no point specifying public access to a constructor of a private class
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1091071 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/commons/lang3/event/EventUtils.java b/src/main/java/org/apache/commons/lang3/event/EventUtils.java
index eb0c7f6..7a4c3e2 100644
--- a/src/main/java/org/apache/commons/lang3/event/EventUtils.java
+++ b/src/main/java/org/apache/commons/lang3/event/EventUtils.java
@@ -91,7 +91,7 @@
* @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));