Author: bago
Date: Mon May 28 04:13:57 2007
New Revision: 542196

URL: http://svn.apache.org/viewvc?view=rev&rev=542196
Log:
Replaced non-ascii chars with unicode literals. Note: I'm not sure that the 
System.out are needed at all and that the 2 unicode chars have a real meaning 
in the output string. I simply fixed the encoding issue.

Modified:
    
james/server/trunk/phoenix-deployment/src/test/org/apache/james/mailboxmanager/TestUtil.java

Modified: 
james/server/trunk/phoenix-deployment/src/test/org/apache/james/mailboxmanager/TestUtil.java
URL: 
http://svn.apache.org/viewvc/james/server/trunk/phoenix-deployment/src/test/org/apache/james/mailboxmanager/TestUtil.java?view=diff&rev=542196&r1=542195&r2=542196
==============================================================================
--- 
james/server/trunk/phoenix-deployment/src/test/org/apache/james/mailboxmanager/TestUtil.java
 (original)
+++ 
james/server/trunk/phoenix-deployment/src/test/org/apache/james/mailboxmanager/TestUtil.java
 Mon May 28 04:13:57 2007
@@ -38,8 +38,8 @@
             for (int i=0; i< size; i++) {
                 if (b1[i]!=b2[i]) {
                     System.out.println("I: "+i+" B1: "+b1[i]+" B2 "+b2[i]);
-                    System.out.println("B1:"+new String(b1,0,i+1)+"°");
-                    System.out.println("B2:"+new String(b2,0,i+1)+"°");
+                    System.out.println("B1:"+new 
String(b1,0,i+1)+"\u00C2\u00B0");
+                    System.out.println("B2:"+new 
String(b2,0,i+1)+"\u00C2\u00B0");
                     break;
                 }
             }



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to