Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/io/PipedOutputStream.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    11/* 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.
    33
    44This file is part of GNU Classpath.
     
    9898  public void connect(PipedInputStream sink) throws IOException
    9999  {
    100     if (sink != null)
     100    if ( != null)
    101101      throw new IOException ("Already connected");
    102102    sink.connect(this);
     
    155155    *           appears to be a no-op?
    156156    */
    157   public void flush()
     157  public void flush()
    158158  {
    159159  }
     
    166166    * @exception IOException If an error occurs
    167167    */
    168   public void close()
     168  public void close()
    169169  {
    170170    // A close call on an unconnected PipedOutputStream has no effect.
Note: See TracChangeset for help on using the changeset viewer.