* java/awt/GridBagConstraints.java: Removed comment.
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 20 Aug 2001 19:53:14 +0000 (19:53 +0000)
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 20 Aug 2001 19:53:14 +0000 (19:53 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45061 138bc75d-0d04-0410-961f-82ee72b054a4

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

index b6fa026..3b1d8cb 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 2c34cc9..27e6658 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;