natToolkit.cc: Added copyright header.
* java/awt/natToolkit.cc: Added copyright header. * java/util/zip/InflaterInputStream.java: Added copyright header. * java/io/FilterWriter.java (FilterWriter): Removed `FIXME' comment. * java/io/SequenceInputStream.java (SequenceInputStream): Removed `FIXME' comment. (getNextStream): Likewise. From-SVN: r26857
This commit is contained in:
parent
2b607265f5
commit
d5dde5342a
5 changed files with 25 additions and 3 deletions
|
@ -1,3 +1,11 @@
|
|||
/* Copyright (C) 1999 Cygnus Solutions
|
||||
|
||||
This file is part of libgcj.
|
||||
|
||||
This software is copyrighted work licensed under the terms of the
|
||||
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
||||
details. */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
/*#define ENABLE_GTK*/
|
||||
|
|
|
@ -29,7 +29,6 @@ public abstract class FilterWriter extends Writer
|
|||
|
||||
protected FilterWriter (Writer ox)
|
||||
{
|
||||
// FIXME: should we really share locks like this?
|
||||
super (ox);
|
||||
out = ox;
|
||||
}
|
||||
|
|
|
@ -33,7 +33,6 @@ public class SequenceInputStream extends InputStream
|
|||
|
||||
public SequenceInputStream(Enumeration e)
|
||||
{
|
||||
// FIXME: Assumes that enum contains only InputStreams.
|
||||
enum = e;
|
||||
in = (InputStream) enum.nextElement();
|
||||
in2 = null;
|
||||
|
@ -94,7 +93,6 @@ public class SequenceInputStream extends InputStream
|
|||
{
|
||||
InputStream nextIn = null;
|
||||
|
||||
// FIXME: Assumes that enum contains only InputStreams.
|
||||
if (enum != null)
|
||||
{
|
||||
if (enum.hasMoreElements())
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
/* Copyright (C) 1999 Cygnus Solutions
|
||||
|
||||
This file is part of libgcj.
|
||||
|
||||
This software is copyrighted work licensed under the terms of the
|
||||
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
||||
details. */
|
||||
|
||||
package java.util.zip;
|
||||
import java.io.*;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue