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
This commit is contained in:
Matthew Jason Benson 2011-04-11 13:38:03 +00:00
parent 88c13f8e6b
commit 9a901d2580
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ private static class EventBindingInvocationHandler implements InvocationHandler
* @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));