You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mc...@apache.org on 2011/10/24 01:45:49 UTC

svn commit: r1188008 - /commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/CacheEntryFactory.java

Author: mcucchiara
Date: Sun Oct 23 23:45:49 2011
New Revision: 1188008

URL: http://svn.apache.org/viewvc?rev=1188008&view=rev
Log:
Removed useless public keyword from interface

Modified:
    commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/CacheEntryFactory.java

Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/CacheEntryFactory.java
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/CacheEntryFactory.java?rev=1188008&r1=1188007&r2=1188008&view=diff
==============================================================================
--- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/CacheEntryFactory.java (original)
+++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/CacheEntryFactory.java Sun Oct 23 23:45:49 2011
@@ -25,6 +25,6 @@ import org.apache.commons.ognl.internal.
 
 public interface CacheEntryFactory<K, V>
 {
-    public V create( K key )
+    V create( K key )
         throws CacheException;
 }