Skip to content

Commit

Permalink
Issue #273: Fixed HTML tags in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
waisuan committed Nov 1, 2015
1 parent 6418a6c commit 998ba7e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion caching/src/main/java/com/iluwatar/caching/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* (depending on the preferred caching policy/strategy).
*
* <i>App --> AppManager --> CacheStore/LRUCache/CachingPolicy --> DBManager</i>
* <p>
* </p>
*
* @see CacheStore
* @See LRUCache
Expand Down
14 changes: 6 additions & 8 deletions caching/src/main/java/com/iluwatar/caching/DBManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,14 @@

/**
*
* <p>
* DBManager handles the communication with the underlying data store i.e. Database. It contains the
* <p>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.
* </p>
* <p>
* Developer/Tester is able to choose whether the application should use MongoDB as its underlying
* for the application.</p>
*
* <p>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()).
* </p>
* during runtime (createVirtualDB()).</p>
*
*/
public class DBManager {

Expand Down

0 comments on commit 998ba7e

Please sign in to comment.