Author: ggregory
Date: Tue Nov 19 00:47:34 2013
New Revision: 1543261
URL: http://svn.apache.org/r1543261
Log:
Redundant use of public modifier.
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Closure.java
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Closure.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Closure.java?rev=1543261&r1=1543260&r2=1543261&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Closure.java
(original)
+++
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Closure.java
Tue Nov 19 00:47:34 2013
@@ -39,6 +39,6 @@ public interface Closure<T> {
* @throws IllegalArgumentException (runtime) if the input is invalid
* @throws FunctorException (runtime) if any other error occurs
*/
- public void execute(T input);
+ void execute(T input);
}