You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-cvs@xml.apache.org by mr...@apache.org on 2008/11/10 03:26:11 UTC

svn commit: r712601 - /xml/commons/trunk/java/src/org/apache/xml/resolver/CatalogManager.java

Author: mrglavas
Date: Sun Nov  9 18:26:10 2008
New Revision: 712601

URL: http://svn.apache.org/viewvc?rev=712601&view=rev
Log:
Fixing a compile error. Autoboxing was only introduced in Java 5.

Modified:
    xml/commons/trunk/java/src/org/apache/xml/resolver/CatalogManager.java

Modified: xml/commons/trunk/java/src/org/apache/xml/resolver/CatalogManager.java
URL: http://svn.apache.org/viewvc/xml/commons/trunk/java/src/org/apache/xml/resolver/CatalogManager.java?rev=712601&r1=712600&r2=712601&view=diff
==============================================================================
--- xml/commons/trunk/java/src/org/apache/xml/resolver/CatalogManager.java (original)
+++ xml/commons/trunk/java/src/org/apache/xml/resolver/CatalogManager.java Sun Nov  9 18:26:10 2008
@@ -236,7 +236,7 @@
     if (verbStr != null) {
       try {
         int verb = Integer.parseInt(verbStr.trim());
-        verbosity = verb;
+        verbosity = new Integer(verb);
         debug.setDebug(verb);
       } catch (Exception e) {
         System.err.println("Cannot parse verbosity: \"" + verbStr + "\"");