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:
Tom Tromey 1999-05-10 09:23:41 +00:00 committed by Tom Tromey
parent 2b607265f5
commit d5dde5342a
5 changed files with 25 additions and 3 deletions

View File

@ -1,5 +1,14 @@
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.

View File

@ -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*/

View File

@ -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;
}

View File

@ -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())

View File

@ -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.*;