Skip to content

Commit 1cde704

Browse files
committedApr 22, 2025·
docs: remove some old diagrams
1 parent d80eca1 commit 1cde704

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed
 

‎data-access-object/README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -199,10 +199,6 @@ The program output:
199199
10:02:09.898 [main] INFO com.iluwatar.dao.App -- customerDao.getAllCustomers(): java.util.stream.ReferencePipeline$Head@f2f2cc1
200200
```
201201

202-
## Detailed Explanation of Data Access Object Pattern with Real-World Examples
203-
204-
![Data Access Object](./etc/dao.png "Data Access Object")
205-
206202
## When to Use the Data Access Object Pattern in Java
207203

208204
Use the Data Access Object in any of the following situations:

‎data-locality/README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,6 @@ The console output:
128128

129129
In this way, the data-locality module demonstrates the Data Locality pattern. By updating all components of the same type together, it increases the likelihood that the data needed for the update is already in the cache, thereby improving performance.
130130

131-
## Detailed Explanation of Data Locality Pattern with Real-World Examples
132-
133-
![Data Locality](./etc/data-locality.urm.png "Data Locality pattern class diagram")
134-
135131
## When to Use the Data Locality Pattern in Java
136132

137133
This pattern is applicable in scenarios where large datasets are processed and performance is critical. It's particularly useful in:

0 commit comments

Comments
 (0)
Please sign in to comment.