Add missing @since tag to new method in EventListenerSupport
This commit is contained in:
parent
a81791c093
commit
291eaf16bf
|
@ -190,8 +190,8 @@ public class EventListenerSupport<L> implements Serializable {
|
||||||
* @param allowDuplicate the flag for determining if duplicate listener
|
* @param allowDuplicate the flag for determining if duplicate listener
|
||||||
* objects are allowed to be registered.
|
* objects are allowed to be registered.
|
||||||
*
|
*
|
||||||
* @throws NullPointerException if <code>listener</code> is
|
* @throws NullPointerException if <code>listener</code> is <code>null</code>.
|
||||||
* <code>null</code>.
|
* @since 3.5
|
||||||
*/
|
*/
|
||||||
public void addListener(final L listener, boolean allowDuplicate) {
|
public void addListener(final L listener, boolean allowDuplicate) {
|
||||||
Validate.notNull(listener, "Listener object cannot be null.");
|
Validate.notNull(listener, "Listener object cannot be null.");
|
||||||
|
|
Loading…
Reference in New Issue