Skip to content

Commit 998ba7e

Browse files
committed
Issue iluwatar#273: Fixed HTML tags in comments
1 parent 6418a6c commit 998ba7e

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

caching/src/main/java/com/iluwatar/caching/App.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* (depending on the preferred caching policy/strategy).
2929
*
3030
* <i>App --> AppManager --> CacheStore/LRUCache/CachingPolicy --> DBManager</i>
31-
* <p>
31+
* </p>
3232
*
3333
* @see CacheStore
3434
* @See LRUCache

caching/src/main/java/com/iluwatar/caching/DBManager.java

+6-8
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,14 @@
1212

1313
/**
1414
*
15-
* <p>
16-
* DBManager handles the communication with the underlying data store i.e. Database. It contains the
15+
* <p>DBManager handles the communication with the underlying data store i.e. Database. It contains the
1716
* implemented methods for querying, inserting, and updating data. MongoDB was used as the database
18-
* for the application.
19-
* </p>
20-
* <p>
21-
* Developer/Tester is able to choose whether the application should use MongoDB as its underlying
17+
* for the application.</p>
18+
*
19+
* <p>Developer/Tester is able to choose whether the application should use MongoDB as its underlying
2220
* data storage (connect()) or a simple Java data structure to (temporarily) store the data/objects
23-
* during runtime (createVirtualDB()).
24-
* </p>
21+
* during runtime (createVirtualDB()).</p>
22+
*
2523
*/
2624
public class DBManager {
2725

0 commit comments

Comments
 (0)