Issue #273: Fixed HTML tags in comments

This commit is contained in:
waisuan 2015-11-02 02:11:58 +08:00
parent 6418a6c2b6
commit 998ba7e6e0
2 changed files with 7 additions and 9 deletions

View File

@ -28,7 +28,7 @@ package com.iluwatar.caching;
* (depending on the preferred caching policy/strategy).
*
* <i>App --> AppManager --> CacheStore/LRUCache/CachingPolicy --> DBManager</i>
* <p>
* </p>
*
* @see CacheStore
* @See LRUCache

View File

@ -12,16 +12,14 @@ import com.mongodb.client.model.UpdateOptions;
/**
*
* <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 {