You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ra...@apache.org on 2008/07/31 18:25:39 UTC

svn commit: r681411 - /incubator/qpid/branches/qpid.0-10/java/client/src/main/java/org/apache/qpid/client/AMQConnectionURL.java

Author: rajith
Date: Thu Jul 31 09:25:38 2008
New Revision: 681411

URL: http://svn.apache.org/viewvc?rev=681411&view=rev
Log:
This is related to QPID-1208
I have enabled the code which will print xxxx when the log level != debug.


Modified:
    incubator/qpid/branches/qpid.0-10/java/client/src/main/java/org/apache/qpid/client/AMQConnectionURL.java

Modified: incubator/qpid/branches/qpid.0-10/java/client/src/main/java/org/apache/qpid/client/AMQConnectionURL.java
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/qpid.0-10/java/client/src/main/java/org/apache/qpid/client/AMQConnectionURL.java?rev=681411&r1=681410&r2=681411&view=diff
==============================================================================
--- incubator/qpid/branches/qpid.0-10/java/client/src/main/java/org/apache/qpid/client/AMQConnectionURL.java (original)
+++ incubator/qpid/branches/qpid.0-10/java/client/src/main/java/org/apache/qpid/client/AMQConnectionURL.java Thu Jul 31 09:25:38 2008
@@ -225,8 +225,7 @@
 
     public String toString()
     {
-        return _url;
-        /*StringBuffer sb = new StringBuffer();
+        StringBuffer sb = new StringBuffer();
 
         sb.append(AMQ_PROTOCOL);
         sb.append("://");
@@ -257,7 +256,7 @@
 
         sb.append(optionsToString());
 
-        return sb.toString();*/
+        return sb.toString();
     }
 
     private String optionsToString()