* java/awt/GridBagConstraints.java: Removed comment.

From-SVN: r45061
This commit is contained in:
Tom Tromey 2001-08-20 19:53:14 +00:00 committed by Tom Tromey
parent a4f291fc90
commit 4c8d8761b0
2 changed files with 3 additions and 2 deletions

View 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.

View 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;