You are viewing a plain text version of this content. The canonical link for it is here.
Posted to batik-commits@xmlgraphics.apache.org by de...@apache.org on 2006/03/10 13:25:24 UTC

svn commit: r384776 - /xmlgraphics/batik/branches/svg11/sources/org/apache/batik/ext/awt/image/GraphicsUtil.java

Author: deweese
Date: Fri Mar 10 04:25:22 2006
New Revision: 384776

URL: http://svn.apache.org/viewcvs?rev=384776&view=rev
Log:
Fixed small problem with fetching of property.

Modified:
    xmlgraphics/batik/branches/svg11/sources/org/apache/batik/ext/awt/image/GraphicsUtil.java

Modified: xmlgraphics/batik/branches/svg11/sources/org/apache/batik/ext/awt/image/GraphicsUtil.java
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/branches/svg11/sources/org/apache/batik/ext/awt/image/GraphicsUtil.java?rev=384776&r1=384775&r2=384776&view=diff
==============================================================================
--- xmlgraphics/batik/branches/svg11/sources/org/apache/batik/ext/awt/image/GraphicsUtil.java (original)
+++ xmlgraphics/batik/branches/svg11/sources/org/apache/batik/ext/awt/image/GraphicsUtil.java Fri Mar 10 04:25:22 2006
@@ -494,7 +494,7 @@
         try {
             String s = System.getProperty
                 ("org.apache.batik.warn_destination", "true");
-            warn = Boolean.valueOf(s);
+            warn = Boolean.valueOf(s).booleanValue();
         } catch (SecurityException se) {
         } catch (NumberFormatException nfe) {
         } finally {