You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/04/20 20:07:15 UTC

svn commit: r1470214 - /commons/proper/io/trunk/src/test/java/org/apache/commons/io/DemuxTestCase.java

Author: sebb
Date: Sat Apr 20 18:07:14 2013
New Revision: 1470214

URL: http://svn.apache.org/r1470214
Log:
Fix deprecation warning

Modified:
    commons/proper/io/trunk/src/test/java/org/apache/commons/io/DemuxTestCase.java

Modified: commons/proper/io/trunk/src/test/java/org/apache/commons/io/DemuxTestCase.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/test/java/org/apache/commons/io/DemuxTestCase.java?rev=1470214&r1=1470213&r2=1470214&view=diff
==============================================================================
--- commons/proper/io/trunk/src/test/java/org/apache/commons/io/DemuxTestCase.java (original)
+++ commons/proper/io/trunk/src/test/java/org/apache/commons/io/DemuxTestCase.java Sat Apr 20 18:07:14 2013
@@ -55,7 +55,7 @@ public class DemuxTestCase {
             m_outputMap.get( threadName );
         assertNotNull( "getOutput()", output );
 
-        return output.toString();
+        return output.toString(Charsets.UTF_8);
     }
 
     private String getInput( final String threadName )