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

reverted char[] to String
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:42:55 +0200
parents 0c78fa47d476
children cc1d3de0e80b
line wrap: on
line diff
--- a/dwt/dwthelper/OutputStream.d	Sat Apr 26 10:01:30 2008 +0200
+++ b/dwt/dwthelper/OutputStream.d	Mon May 05 00:42:55 2008 +0200
@@ -27,7 +27,7 @@
         ostr.write(b);
     }
 
-    public void write(char[] c) {
+    public void write(String c) {
         ostr.write(c);
     }