Changeset 48:9a64a7781bab for dwt/internal/image/LEDataOutputStream.d
- Timestamp:
- 02/02/08 19:14:54 (1 year ago)
- Files:
-
- dwt/internal/image/LEDataOutputStream.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/internal/image/LEDataOutputStream.d
r2 r48 26 26 * starting at the specified offset, to the output stream. 27 27 */ 28 public void write(byte b[], int off, int len) {28 override public void write(byte b[], int off, int len) { 29 29 ostr.write(b, off, len); 30 30 } … … 32 32 * Write the given byte to the output stream. 33 33 */ 34 public void write(int b) {34 override public void write(int b) { 35 35 ostr.write(b); 36 36 }
