mirror of
https://github.com/apache/commons-lang.git
synced 2025-02-09 03:24:58 +00:00
Missing @Override
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1089974 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
44a1c545c2
commit
937114b426
@ -187,6 +187,7 @@ public void testSubclassInvocationHandling() throws PropertyVetoException {
|
||||
@SuppressWarnings("serial")
|
||||
EventListenerSupport<VetoableChangeListener> eventListenerSupport = new EventListenerSupport<VetoableChangeListener>(
|
||||
VetoableChangeListener.class) {
|
||||
@Override
|
||||
protected java.lang.reflect.InvocationHandler createInvocationHandler() {
|
||||
return new ProxyInvocationHandler() {
|
||||
/**
|
||||
@ -200,7 +201,7 @@ public Object invoke(Object proxy, Method method, Object[] args)
|
||||
: super.invoke(proxy, method, args);
|
||||
}
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
VetoableChangeListener listener = EasyMock.createNiceMock(VetoableChangeListener.class);
|
||||
|
Loading…
x
Reference in New Issue
Block a user