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 2007/11/14 21:44:44 UTC

svn commit: r595043 - /commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/DefaultConfigurationBuilder.java

Author: oheger
Date: Wed Nov 14 12:44:43 2007
New Revision: 595043

URL: http://svn.apache.org/viewvc?rev=595043&view=rev
Log:
Applied a workaround for fixing a mysterious MethodNotFound error in the test cases when run under a JDK 1.3

Modified:
    commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/DefaultConfigurationBuilder.java

Modified: commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/DefaultConfigurationBuilder.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/DefaultConfigurationBuilder.java?rev=595043&r1=595042&r2=595043&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/DefaultConfigurationBuilder.java (original)
+++ commons/proper/configuration/trunk/src/java/org/apache/commons/configuration/DefaultConfigurationBuilder.java Wed Nov 14 12:44:43 2007
@@ -607,10 +607,12 @@
         }
         return result;
     }
-    
+
     protected void fireError(int type, String propName, Object propValue,
             Throwable ex)
     {
+        // This method is only overridden to fix a mysterious MethodNotFound
+        // error in the test cases when run under a JDK 1.3.
         super.fireError(type, propName, propValue, ex);
     }