You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by oh...@apache.org on 2015/05/10 22:18:18 UTC

svn commit: r1678627 - /commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/event/EventListenerList.java

Author: oheger
Date: Sun May 10 20:18:18 2015
New Revision: 1678627

URL: http://svn.apache.org/r1678627
Log:
Checkstyle: missing @param for type parameter, made inner class final.

Modified:
    commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/event/EventListenerList.java

Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/event/EventListenerList.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/event/EventListenerList.java?rev=1678627&r1=1678626&r2=1678627&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/event/EventListenerList.java (original)
+++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/event/EventListenerList.java Sun May 10 20:18:18 2015
@@ -113,6 +113,7 @@ public class EventListenerList
      *
      * @param eventType the event type
      * @param listener the event listener to be removed
+     * @param <T> the type of events processed by this listener
      * @return a flag whether a listener registration was removed
      */
     public <T extends Event> boolean removeEventListener(
@@ -304,7 +305,7 @@ public class EventListenerList
      *
      * @param <T> the event type
      */
-    public static class EventListenerIterator<T extends Event> implements
+    public static final class EventListenerIterator<T extends Event> implements
             Iterator<EventListener<? super T>>
     {
         /** The underlying iterator. */