From a1db344663d6422ee798d1be216f209d227f1a34 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 4 Feb 2003 21:07:15 +0000 Subject: PipedOutputStream.java (flush): Declare as throwing IOException. * java/io/PipedOutputStream.java (flush): Declare as throwing IOException. (close): Likewise. * java/io/PipedWriter.java (close): Declare as throwing IOException. * java/io/StringWriter.java (close): Declare as throwing IOException. From-SVN: r62401 --- libjava/java/io/PipedOutputStream.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libjava/java/io/PipedOutputStream.java') diff --git a/libjava/java/io/PipedOutputStream.java b/libjava/java/io/PipedOutputStream.java index 68b656b1925..09d8db707e9 100644 --- a/libjava/java/io/PipedOutputStream.java +++ b/libjava/java/io/PipedOutputStream.java @@ -1,5 +1,5 @@ /* PipedOutputStream.java -- Write portion of piped streams. - Copyright (C) 1998, 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 1998, 2000, 2001, 2003 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -154,7 +154,7 @@ public class PipedOutputStream extends OutputStream * had read all available data. Thats not the case - this method * appears to be a no-op? */ - public void flush() + public void flush() throws IOException { } @@ -165,7 +165,7 @@ public class PipedOutputStream extends OutputStream * * @exception IOException If an error occurs */ - public void close() + public void close() throws IOException { // A close call on an unconnected PipedOutputStream has no effect. if (sink != null) -- cgit v1.2.3