Add missing @since tag to new method in EventListenerSupport

This commit is contained in:
Benedikt Ritter 2016-09-11 15:53:59 +02:00
parent a81791c093
commit 291eaf16bf
1 changed files with 2 additions and 2 deletions

View File

@ -190,8 +190,8 @@ public class EventListenerSupport<L> implements Serializable {
* @param allowDuplicate the flag for determining if duplicate listener
* objects are allowed to be registered.
*
* @throws NullPointerException if <code>listener</code> is
* <code>null</code>.
* @throws NullPointerException if <code>listener</code> is <code>null</code>.
* @since 3.5
*/
public void addListener(final L listener, boolean allowDuplicate) {
Validate.notNull(listener, "Listener object cannot be null.");