diff dwt/dwthelper/ByteArrayOutputStream.d @ 238:380bad9f6852

reverted char[] to String
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:42:55 +0200
parents 3d9bbe0a83a0
children cc1d3de0e80b
line wrap: on
line diff
--- a/dwt/dwthelper/ByteArrayOutputStream.d	Sat Apr 26 10:01:30 2008 +0200
+++ b/dwt/dwthelper/ByteArrayOutputStream.d	Mon May 05 00:42:55 2008 +0200
@@ -44,17 +44,17 @@
         return 0;
     }
 
-    public override char[] toString(){
+    public override String toString(){
         implMissing( __FILE__, __LINE__ );
         return null;
     }
 
-    public char[] toString( char[] enc ){
+    public String toString( String enc ){
         implMissing( __FILE__, __LINE__ );
         return null;
     }
 
-    public char[] toString( int hibyte ){
+    public String toString( int hibyte ){
         implMissing( __FILE__, __LINE__ );
         return null;
     }