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:
Sebastian Bazley 2011-04-07 20:10:40 +00:00
parent 44a1c545c2
commit 937114b426
1 changed files with 2 additions and 1 deletions

View File

@ -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);