Added author to all java files with class comments.
[utils] / support / src / main / java / org / wamblee / cache / ForeverCache.java
index fe607aac1a4d908d8c5d5409edcedc34fe417888..8b7f8bf483a3c497e5cb90d583bb167e2f29813c 100644 (file)
@@ -22,6 +22,8 @@ import java.util.HashMap;
 /**
  * A very simple cache based on a HashMap, It never expires any entries, and has
  * no bounds on its size.
+ *
+ * @author Erik Brakkee
  */
 public class ForeverCache<KeyType extends Serializable, ValueType extends Serializable>
         implements Cache<KeyType, ValueType> {