[exo-jcr-commits] exo-jcr SVN: r4595 - kernel/trunk/exo.kernel.component.cache/src/main/java/org/exoplatform/services/cache/impl.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Jul 5 05:18:02 EDT 2011


Author: tolusha
Date: 2011-07-05 05:18:02 -0400 (Tue, 05 Jul 2011)
New Revision: 4595

Modified:
   kernel/trunk/exo.kernel.component.cache/src/main/java/org/exoplatform/services/cache/impl/InvalidationExoCache.java
Log:
EXOJCR-1418: remove violations

Modified: kernel/trunk/exo.kernel.component.cache/src/main/java/org/exoplatform/services/cache/impl/InvalidationExoCache.java
===================================================================
--- kernel/trunk/exo.kernel.component.cache/src/main/java/org/exoplatform/services/cache/impl/InvalidationExoCache.java	2011-07-05 09:11:58 UTC (rev 4594)
+++ kernel/trunk/exo.kernel.component.cache/src/main/java/org/exoplatform/services/cache/impl/InvalidationExoCache.java	2011-07-05 09:18:02 UTC (rev 4595)
@@ -56,7 +56,8 @@
  * @version $Id$
  *
  */
-public class InvalidationExoCache<K extends Serializable, V> implements ExoCache<K, V>, CacheListener<K, InvalidationExoCache.HashCode<V>>
+public class InvalidationExoCache<K extends Serializable, V> implements ExoCache<K, V>,
+   CacheListener<K, InvalidationExoCache.HashCode<V>>
 {
    /**
     * Logger.
@@ -333,7 +334,7 @@
    }
 
    /**
-    * @see org.exoplatform.services.cache.CacheListener#onExpire(org.exoplatform.services.cache.CacheListenerContext, java.io.Serializable, java.lang.Object)
+    * {@inheritDoc}
     */
    public void onExpire(CacheListenerContext context, K key, HashCode<V> obj) throws Exception
    {
@@ -357,7 +358,7 @@
    }
 
    /**
-    * @see org.exoplatform.services.cache.CacheListener#onRemove(org.exoplatform.services.cache.CacheListenerContext, java.io.Serializable, java.lang.Object)
+    * {@inheritDoc}
     */
    public void onRemove(CacheListenerContext context, K key, HashCode<V> obj) throws Exception
    {
@@ -381,7 +382,7 @@
    }
 
    /**
-    * @see org.exoplatform.services.cache.CacheListener#onPut(org.exoplatform.services.cache.CacheListenerContext, java.io.Serializable, java.lang.Object)
+    * {@inheritDoc}
     */
    public void onPut(CacheListenerContext context, K key, HashCode<V> obj) throws Exception
    {
@@ -424,7 +425,7 @@
    }
 
    /**
-    * @see org.exoplatform.services.cache.CacheListener#onGet(org.exoplatform.services.cache.CacheListenerContext, java.io.Serializable, java.lang.Object)
+    * {@inheritDoc}
     */
    public void onGet(CacheListenerContext context, K key, HashCode<V> obj) throws Exception
    {



More information about the exo-jcr-commits mailing list