* java/awt/GridBagConstraints.java: Removed comment.
authorTom Tromey <tromey@redhat.com>
Mon, 20 Aug 2001 19:53:14 +0000 (19:53 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Mon, 20 Aug 2001 19:53:14 +0000 (19:53 +0000)
From-SVN: r45061

libjava/ChangeLog
libjava/java/awt/GridBagConstraints.java

index b6fa02688e4b07a70ebe5b60e5c2bb3dfe318cae..3b1d8cb614ef421fec25e6f0bcce9c00cb42903a 100644 (file)
@@ -1,5 +1,7 @@
 2001-08-20  Tom Tromey  <tromey@redhat.com>
 
+       * java/awt/GridBagConstraints.java: Removed comment.
+
        * jni.cc (nathash, nathash_count, nathash_size): New globals.
        (DELETED_ENTRY): New define.
        (hash): New function.
index 2c34cc9b42f7fa44a85b8653915eec76d44f153a..27e66587e6c194456c9c39ae5c38e924f823202d 100644 (file)
@@ -1,6 +1,6 @@
 // GridBagConstraints.java - Constraints for GridBag layout manager
 
-/* Copyright (C) 2000  Free Software Foundation
+/* Copyright (C) 2000, 2001  Free Software Foundation
 
    This file is part of libgcj.
 
@@ -64,7 +64,6 @@ public class GridBagConstraints implements Cloneable, Serializable
   /** Create a copy of this object.  */
   public Object clone ()
   {
-    // This is lazy but it works.
     GridBagConstraints g = (GridBagConstraints) super.clone ();
     g.insets = (Insets) insets.clone ();
     return g;