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:17:02 UTC

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

Author: oheger
Date: Sun May 10 20:17:02 2015
New Revision: 1678624

URL: http://svn.apache.org/r1678624
Log:
Checkstyle: missing @param tag for type parameter.

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

Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/event/BaseEventSource.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/event/BaseEventSource.java?rev=1678624&r1=1678623&r2=1678624&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/event/BaseEventSource.java (original)
+++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/event/BaseEventSource.java Sun May 10 20:17:02 2015
@@ -265,6 +265,7 @@ public class BaseEventSource implements
      * @param propertyValue the value of the affected property (can be
      *        <b>null</b>)
      * @param cause the {@code Throwable} object that caused this error event
+     * @param <T> the event type
      */
     public <T extends ConfigurationErrorEvent> void fireError(
             EventType<T> eventType, EventType<?> operationType,