Show
Ignore:
Timestamp:
02/02/08 19:14:54 (1 year ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

Added override and alias, first chunk. Thanks torhu for doing this patch.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/internal/image/LEDataOutputStream.d

    r2 r48  
    2626 * starting at the specified offset, to the output stream. 
    2727 */ 
    28 public void write(byte b[], int off, int len) { 
     28override public void write(byte b[], int off, int len) { 
    2929    ostr.write(b, off, len); 
    3030} 
     
    3232 * Write the given byte to the output stream. 
    3333 */ 
    34 public void write(int b)  { 
     34override public void write(int b)  { 
    3535    ostr.write(b); 
    3636}