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:
parent
88c13f8e6b
commit
9a901d2580
|
@ -91,7 +91,7 @@ public class EventUtils {
|
||||||
* @param methodName the name of the method to be invoked
|
* @param methodName the name of the method to be invoked
|
||||||
* @param eventTypes the names of the supported event types
|
* @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.target = target;
|
||||||
this.methodName = methodName;
|
this.methodName = methodName;
|
||||||
this.eventTypes = new HashSet<String>(Arrays.asList(eventTypes));
|
this.eventTypes = new HashSet<String>(Arrays.asList(eventTypes));
|
||||||
|
|
Loading…
Reference in New Issue