* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26857
138bc75d-0d04-0410-961f-
82ee72b054a4
1999-05-10 Tom Tromey <tromey@cygnus.com>
+ * 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.
+
* java/util/ResourceBundle.java (partialGetBundle): Explicitly use
locale.toString().
(getBundle): Don't explicitly throw null pointer exception.
+/* 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*/
protected FilterWriter (Writer ox)
{
- // FIXME: should we really share locks like this?
super (ox);
out = ox;
}
public SequenceInputStream(Enumeration e)
{
- // FIXME: Assumes that enum contains only InputStreams.
enum = e;
in = (InputStream) enum.nextElement();
in2 = null;
{
InputStream nextIn = null;
- // FIXME: Assumes that enum contains only InputStreams.
if (enum != null)
{
if (enum.hasMoreElements())
+/* 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.*;