Repository: commons-lang Updated Branches: refs/heads/master a81791c09 -> d772e171d
Add missing @since tag to new method in EventListenerSupport Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/291eaf16 Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/291eaf16 Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/291eaf16 Branch: refs/heads/master Commit: 291eaf16bf208e1012dc5da722a53fb5870c3035 Parents: a81791c Author: Benedikt Ritter <[email protected]> Authored: Sun Sep 11 15:53:59 2016 +0200 Committer: Benedikt Ritter <[email protected]> Committed: Sun Sep 11 15:53:59 2016 +0200 ---------------------------------------------------------------------- .../org/apache/commons/lang3/event/EventListenerSupport.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-lang/blob/291eaf16/src/main/java/org/apache/commons/lang3/event/EventListenerSupport.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/lang3/event/EventListenerSupport.java b/src/main/java/org/apache/commons/lang3/event/EventListenerSupport.java index 475af1b..8ad04cc 100644 --- a/src/main/java/org/apache/commons/lang3/event/EventListenerSupport.java +++ b/src/main/java/org/apache/commons/lang3/event/EventListenerSupport.java @@ -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.");
