diff -r a2de5429d581 -r 3bc4c54f4bcc samples/delegatingwriterfinal/src-api2.0/api/Writer.java --- a/samples/delegatingwriterfinal/src-api2.0/api/Writer.java Sat Jun 14 09:53:07 2008 +0200 +++ b/samples/delegatingwriterfinal/src-api2.0/api/Writer.java Sat Jun 14 09:56:12 2008 +0200 @@ -32,7 +32,8 @@ seq.write(new CharSeq(cbuf, 0, cbuf.length)); } } - public final void write(char cbuf[], int off, int len) throws IOException { + public final void write(char cbuf[], int off, int len) + throws IOException { if (impl != null) { impl.write(cbuf, off, len); } else { @@ -46,7 +47,8 @@ seq.write(str); } } - public final void write(String str, int off, int len) throws IOException { + public final void write(String str, int off, int len) + throws IOException { if (impl != null) { impl.write(str, off, len); } else { @@ -81,7 +83,8 @@ return this; } - public final Writer append(CharSequence csq, int start, int end) throws IOException { + public final Writer append(CharSequence csq, int start, int end) + throws IOException { return append(csq.subSequence(start, end)); }