diff dwt/dwthelper/OutputStream.d @ 212:ab60f3309436

reverted the char[] to String and use the an alias.
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:12:38 +0200
parents 5406a8f6526d
children 32a6819fef61
line wrap: on
line diff
--- a/dwt/dwthelper/OutputStream.d	Sat Apr 26 10:01:48 2008 +0200
+++ b/dwt/dwthelper/OutputStream.d	Mon May 05 00:12:38 2008 +0200
@@ -27,7 +27,7 @@
         ostr.write(b);
     }
 
-    public void write(char[] c) {
+    public void write(String c) {
         ostr.write(c);
     }