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 ca...@apache.org on 2007/11/30 03:55:49 UTC

svn commit: r599681 - in /xmlgraphics/batik/trunk/sources/org/apache/batik/bridge: BridgeContext.java GVTBuilder.java

Author: cam
Date: Thu Nov 29 18:55:48 2007
New Revision: 599681

URL: http://svn.apache.org/viewvc?rev=599681&view=rev
Log:
Stop spitting out some exceptions to the console; just leave them to
the UserAgent.

Modified:
    xmlgraphics/batik/trunk/sources/org/apache/batik/bridge/BridgeContext.java
    xmlgraphics/batik/trunk/sources/org/apache/batik/bridge/GVTBuilder.java

Modified: xmlgraphics/batik/trunk/sources/org/apache/batik/bridge/BridgeContext.java
URL: http://svn.apache.org/viewvc/xmlgraphics/batik/trunk/sources/org/apache/batik/bridge/BridgeContext.java?rev=599681&r1=599680&r2=599681&view=diff
==============================================================================
--- xmlgraphics/batik/trunk/sources/org/apache/batik/bridge/BridgeContext.java (original)
+++ xmlgraphics/batik/trunk/sources/org/apache/batik/bridge/BridgeContext.java Thu Nov 29 18:55:48 2007
@@ -776,7 +776,7 @@
         } catch (InterruptedIOException ex) {
             throw new InterruptedBridgeException();
         } catch (IOException ex) {
-            ex.printStackTrace();
+            //ex.printStackTrace();
             throw new BridgeException(this, e, ex, ERR_URI_IO,
                                       new Object[] {uri});
         } catch (SecurityException ex) {

Modified: xmlgraphics/batik/trunk/sources/org/apache/batik/bridge/GVTBuilder.java
URL: http://svn.apache.org/viewvc/xmlgraphics/batik/trunk/sources/org/apache/batik/bridge/GVTBuilder.java?rev=599681&r1=599680&r2=599681&view=diff
==============================================================================
--- xmlgraphics/batik/trunk/sources/org/apache/batik/bridge/GVTBuilder.java (original)
+++ xmlgraphics/batik/trunk/sources/org/apache/batik/bridge/GVTBuilder.java Thu Nov 29 18:55:48 2007
@@ -87,7 +87,7 @@
         } catch (BridgeException ex) {
             // update the exception with the missing parameters
             ex.setGraphicsNode(rootNode);
-            ex.printStackTrace();
+            //ex.printStackTrace();
             throw ex; // re-throw the udpated exception
         }