Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 55A25200B7F for ; Sun, 11 Sep 2016 15:55:48 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 545AF160AD4; Sun, 11 Sep 2016 13:55:48 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 9C628160AAA for ; Sun, 11 Sep 2016 15:55:47 +0200 (CEST) Received: (qmail 42302 invoked by uid 500); 11 Sep 2016 13:55:46 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 42293 invoked by uid 99); 11 Sep 2016 13:55:46 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Sep 2016 13:55:46 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 83016E056F; Sun, 11 Sep 2016 13:55:46 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: britter@apache.org To: commits@commons.apache.org Date: Sun, 11 Sep 2016 13:55:46 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/2] [lang] Add missing @since tag to new method in EventListenerSupport archived-at: Sun, 11 Sep 2016 13:55:48 -0000 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 Authored: Sun Sep 11 15:53:59 2016 +0200 Committer: Benedikt Ritter 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 implements Serializable { * @param allowDuplicate the flag for determining if duplicate listener * objects are allowed to be registered. * - * @throws NullPointerException if listener is - * null. + * @throws NullPointerException if listener is null. + * @since 3.5 */ public void addListener(final L listener, boolean allowDuplicate) { Validate.notNull(listener, "Listener object cannot be null.");