]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
natToolkit.cc: Added copyright header.
authorTom Tromey <tromey@cygnus.com>
Mon, 10 May 1999 09:23:41 +0000 (09:23 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Mon, 10 May 1999 09:23:41 +0000 (09:23 +0000)
* 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

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

index b7d54b391bfa5b40a4a0b55a04a8d5ee0560b722..6235e2623d363e5989289ce2078d2d540b234179 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 8a9c0acca244d18c8bf3f1bb3f56865f47049eec..2d644a6b783e207ccad4356570567eef1253614b 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 385cc7eee30113c440cf98fa462f1a2accbd2d5b..d0c167ee1bdd627ee6084ae2a06eb32171c11254 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 771351784ab2299f46f94371545122a1c7687d8e..e6c79f3fc105b866ac08f25830a0d890f99058be 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 e064c9845c8a5adfdba630c103a3d52d24028259..1b6290a4fc1f76defa84251c27f53635f302762e 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.*;