Added author to all java files with class comments.
[utils] / support / src / main / java / org / wamblee / cache / ZeroCache.java
index 4c5e1b1a5d1b422b52de1551f3f30624905beb2d..55f9cc95dcca23c9972b9036cc05e9cfb375ed5b 100644 (file)
@@ -22,6 +22,8 @@ import java.io.Serializable;
  * A cache that does not cache. This implementation is useful for disabling caching. 
  * Because of this implementation, application code does not need to distinguish 
  * between the situation where it a cache is used and where it isn't. 
+ *
+ * @author Erik Brakkee
  */
 public class ZeroCache<KeyType extends Serializable, ValueType extends Serializable> 
    implements Cache<KeyType, ValueType> {