Fix missing "package" declaration.
authorBryce McKinlay <bryce@gcc.gnu.org>
Wed, 12 Jul 2000 21:16:52 +0000 (22:16 +0100)
committerBryce McKinlay <bryce@gcc.gnu.org>
Wed, 12 Jul 2000 21:16:52 +0000 (22:16 +0100)
From-SVN: r35001

libjava/java/awt/image/ImageConsumer.java
libjava/java/awt/image/ImageProducer.java

index 4cf19dc..e02cb19 100644 (file)
@@ -6,6 +6,8 @@ This software is copyrighted work licensed under the terms of the
 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
 details.  */
 
+package java.awt.image;
+
 public interface ImageConsumer
 {
 
index 51808cd..c8cfe12 100644 (file)
@@ -6,6 +6,8 @@ This software is copyrighted work licensed under the terms of the
 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
 details.  */
 
+package java.awt.image;
+
 public interface ImageProducer
 {
   void addConsumer(ImageConsumer ic);