You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2013/11/19 01:45:38 UTC

svn commit: r1543256 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Factory.java

Author: ggregory
Date: Tue Nov 19 00:45:38 2013
New Revision: 1543256

URL: http://svn.apache.org/r1543256
Log:
Redundant use of public modifier.

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Factory.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Factory.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Factory.java?rev=1543256&r1=1543255&r2=1543256&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Factory.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Factory.java Tue Nov 19 00:45:38 2013
@@ -39,6 +39,6 @@ public interface Factory<T> {
      * @return a new object
      * @throws FunctorException (runtime) if the factory cannot create an object
      */
-    public T create();
+    T create();
 
 }