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 2014/07/22 22:04:49 UTC

svn commit: r1612676 - /commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/ConfigurationErrorEvent.java

Author: oheger
Date: Tue Jul 22 20:04:49 2014
New Revision: 1612676

URL: http://svn.apache.org/r1612676
Log:
Removed deprecated constructor from ConfigurationErrorEvent.

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

Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/ConfigurationErrorEvent.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/ConfigurationErrorEvent.java?rev=1612676&r1=1612675&r2=1612676&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/ConfigurationErrorEvent.java (original)
+++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/event/ConfigurationErrorEvent.java Tue Jul 22 20:04:49 2014
@@ -99,25 +99,6 @@ public class ConfigurationErrorEvent ext
     private final Throwable cause;
 
     /**
-     * Creates a new instance of {@code ConfigurationErrorEvent} and initializes
-     * it.
-     *
-     * @param source the event source
-     * @param type the event's type
-     * @param propertyName the name of the affected property
-     * @param propertyValue the value of the affected property
-     * @param cause the exception object that caused this event
-     * @deprecated Use the other constructor
-     */
-    @Deprecated
-    public ConfigurationErrorEvent(Object source, int type,
-            String propertyName, Object propertyValue, Throwable cause)
-    {
-        this(source, ConfigurationErrorEvent.ANY, ConfigurationEvent.ANY,
-                propertyName, propertyValue, cause);
-    }
-
-    /**
      * Creates a new instance of {@code ConfigurationErrorEvent} and sets all
      * its properties.
      *