- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/io/PipedOutputStream.java (modified) (4 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/io/PipedOutputStream.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 1 /* PipedOutputStream.java -- Write portion of piped streams. 2 Copyright (C) 1998, 2000, 2001 Free Software Foundation, Inc.2 Copyright (C) 1998, 2000, 2001 Free Software Foundation, Inc. 3 3 4 4 This file is part of GNU Classpath. … … 98 98 public void connect(PipedInputStream sink) throws IOException 99 99 { 100 if ( sink!= null)100 if ( != null) 101 101 throw new IOException ("Already connected"); 102 102 sink.connect(this); … … 155 155 * appears to be a no-op? 156 156 */ 157 public void flush() 157 public void flush() 158 158 { 159 159 } … … 166 166 * @exception IOException If an error occurs 167 167 */ 168 public void close() 168 public void close() 169 169 { 170 170 // A close call on an unconnected PipedOutputStream has no effect. -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
