updated coding rules.
[utils] / support / general / src / main / java / org / wamblee / cache / ForeverCache.java
index 8b7f8bf483a3c497e5cb90d583bb167e2f29813c..d506e170c6ff1e59621bb77ab9865a740b9841bf 100644 (file)
@@ -31,14 +31,14 @@ public class ForeverCache<KeyType extends Serializable, ValueType extends Serial
     /**
      * Cached entries.
      */
-    private HashMap<KeyType, ValueType> _map;
+    private HashMap<KeyType, ValueType> map;
 
     /**
      * Constructs the cache.
      * 
      */
     public ForeverCache() {
-        _map = new HashMap<KeyType, ValueType>();
+        map = new HashMap<KeyType, ValueType>();
     }
 
     /*
@@ -47,7 +47,7 @@ public class ForeverCache<KeyType extends Serializable, ValueType extends Serial
      * @see org.wamblee.cache.Cache#put(KeyType, ValueType)
      */
     public synchronized void put(KeyType aKey, ValueType aValue) {
-        _map.put(aKey, aValue);
+        map.put(aKey, aValue);
     }
 
     /*
@@ -56,7 +56,7 @@ public class ForeverCache<KeyType extends Serializable, ValueType extends Serial
      * @see org.wamblee.cache.Cache#get(KeyType)
      */
     public synchronized ValueType get(KeyType aKey) {
-        return _map.get(aKey);
+        return map.get(aKey);
     }
 
     /*
@@ -65,7 +65,7 @@ public class ForeverCache<KeyType extends Serializable, ValueType extends Serial
      * @see org.wamblee.cache.Cache#remove(KeyType)
      */
     public synchronized void remove(KeyType aKey) {
-        _map.remove(aKey);
+        map.remove(aKey);
     }
 
     /*
@@ -74,6 +74,6 @@ public class ForeverCache<KeyType extends Serializable, ValueType extends Serial
      * @see org.wamblee.cache.Cache#clear()
      */
     public synchronized void clear() {
-        _map.clear();
+        map.clear();
     }
 }