diff --git a/caching/src/main/java/com/iluwatar/caching/App.java b/caching/src/main/java/com/iluwatar/caching/App.java index 423e0ee8..c7f55db7 100644 --- a/caching/src/main/java/com/iluwatar/caching/App.java +++ b/caching/src/main/java/com/iluwatar/caching/App.java @@ -28,7 +28,7 @@ * (depending on the preferred caching policy/strategy). * * App --> AppManager --> CacheStore/LRUCache/CachingPolicy --> DBManager - *
+ *
* * @see CacheStore * @See LRUCache diff --git a/caching/src/main/java/com/iluwatar/caching/DBManager.java b/caching/src/main/java/com/iluwatar/caching/DBManager.java index d30ad756..07a5daea 100644 --- a/caching/src/main/java/com/iluwatar/caching/DBManager.java +++ b/caching/src/main/java/com/iluwatar/caching/DBManager.java @@ -12,16 +12,14 @@ /** * - *- * DBManager handles the communication with the underlying data store i.e. Database. It contains the + *
DBManager handles the communication with the underlying data store i.e. Database. It contains the * implemented methods for querying, inserting, and updating data. MongoDB was used as the database - * for the application. - *
- *- * Developer/Tester is able to choose whether the application should use MongoDB as its underlying + * for the application.
+ * + *Developer/Tester is able to choose whether the application should use MongoDB as its underlying * data storage (connect()) or a simple Java data structure to (temporarily) store the data/objects - * during runtime (createVirtualDB()). - *
+ * during runtime (createVirtualDB()). + * */ public class DBManager {