Depreacte EventUtils 0-argument contructor

This commit is contained in:
Gary Gregory 2024-01-25 09:27:41 -05:00
parent 32196a11ad
commit a84d013078
1 changed files with 10 additions and 0 deletions

View File

@ -126,4 +126,14 @@ public class EventUtils {
new Class[] { listenerType }, new EventBindingInvocationHandler(target, methodName, eventTypes)));
addEventListener(eventSource, listenerType, listener);
}
/**
* Make private in 4.0.
*
* @deprecated TODO Make private in 4.0.
*/
@Deprecated
public EventUtils() {
// empty
}
}