OSDN Git Service

* java/awt/natToolkit.cc: Added copyright header.
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 10 May 1999 09:23:41 +0000 (09:23 +0000)
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 10 May 1999 09:23:41 +0000 (09:23 +0000)
* 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

libjava/ChangeLog
libjava/java/awt/natToolkit.cc
libjava/java/io/FilterWriter.java
libjava/java/io/SequenceInputStream.java
libjava/java/util/zip/InflaterInputStream.java

index b7d54b3..6235e26 100644 (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.
index 8a9c0ac..2d644a6 100644 (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*/
index 385cc7e..d0c167e 100644 (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;
   }
index 7713517..e6c79f3 100644 (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())
index e064c98..1b6290a 100644 (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.*;