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:56 UTC

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

Author: ggregory
Date: Tue Nov 19 00:45:55 2013
New Revision: 1543257

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

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

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Put.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Put.java?rev=1543257&r1=1543256&r2=1543257&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Put.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Put.java Tue Nov 19 00:45:55 2013
@@ -37,7 +37,7 @@ public interface Put<K, V> {
     /**
      * @see Map#clear()
      */
-    public void clear();
+    void clear();
 
     /**
      * Note that the return type is Object, rather than V as in the Map interface.
@@ -45,11 +45,11 @@ public interface Put<K, V> {
      *
      * @see Map#put(Object, Object)
      */
-    public Object put(K key, V value);
+    Object put(K key, V value);
 
     /**
      * @see Map#putAll(Map)
      */
-    public void putAll(Map<? extends K, ? extends V> t);
+    void putAll(Map<? extends K, ? extends V> t);
 
 }