Changeset 212:ab60f3309436 for dwt/dwthelper/ByteArrayOutputStream.d
- Timestamp:
- 05/04/08 18:12:38 (8 months ago)
- Files:
-
- dwt/dwthelper/ByteArrayOutputStream.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/dwthelper/ByteArrayOutputStream.d
r0 r212 45 45 } 46 46 47 public override char[]toString(){47 public override String toString(){ 48 48 implMissing( __FILE__, __LINE__ ); 49 49 return null; 50 50 } 51 51 52 public char[] toString( char[]enc ){52 public String toString( String enc ){ 53 53 implMissing( __FILE__, __LINE__ ); 54 54 return null; 55 55 } 56 56 57 public char[]toString( int hibyte ){57 public String toString( int hibyte ){ 58 58 implMissing( __FILE__, __LINE__ ); 59 59 return null;
