You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mb...@apache.org on 2011/04/11 15:38:04 UTC

svn commit: r1091071 - /commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/event/EventUtils.java

Author: mbenson
Date: Mon Apr 11 13:38:03 2011
New Revision: 1091071

URL: http://svn.apache.org/viewvc?rev=1091071&view=rev
Log:
no point specifying public access to a constructor of a private class

Modified:
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/event/EventUtils.java

Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/event/EventUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/event/EventUtils.java?rev=1091071&r1=1091070&r2=1091071&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/event/EventUtils.java (original)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/event/EventUtils.java Mon Apr 11 13:38:03 2011
@@ -91,7 +91,7 @@ public class EventUtils {
          * @param methodName the name of the method to be invoked
          * @param eventTypes the names of the supported event types
          */
-        public EventBindingInvocationHandler(final Object target, final String methodName, String[] eventTypes) {
+        EventBindingInvocationHandler(final Object target, final String methodName, String[] eventTypes) {
             this.target = target;
             this.methodName = methodName;
             this.eventTypes = new HashSet<String>(Arrays.asList(eventTypes));