You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by am...@apache.org on 2007/09/28 10:02:11 UTC

svn commit: r580245 - /webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/util/PrettyPrinter.java

Author: amilas
Date: Fri Sep 28 01:02:10 2007
New Revision: 580245

URL: http://svn.apache.org/viewvc?rev=580245&view=rev
Log:
set it to prity print only if user has given it with the system variable
axis2.jalopy 

Modified:
    webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/util/PrettyPrinter.java

Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/util/PrettyPrinter.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/util/PrettyPrinter.java?rev=580245&r1=580244&r2=580245&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/util/PrettyPrinter.java (original)
+++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/util/PrettyPrinter.java Fri Sep 28 01:02:10 2007
@@ -47,7 +47,7 @@
         // If the user has set "axis2.jalopy=false" on the system property,
         // then just return back to caller
         String property = System.getProperty("axis2.jalopy");
-        if(property != null && JavaUtils.isFalseExplicitly(property)){
+        if((property == null) || !JavaUtils.isTrueExplicitly(property)){
             return;
         }
         PrintStream backupOutputStream = System.out;



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org