Vector.java (VectorEnumeration): Now `final'.

* java/util/Vector.java (VectorEnumeration): Now `final'.
	* java/util/Hashtable.java (HashtableEntry): Now `final'.
	(HashtableEnumeration): Likewise.
	* java/util/zip/ZipFile.java (ZipEnumeration): Now `final'.
	* java/text/RuleBasedCollator.java (RBCElement): Now `final'.

From-SVN: r33083
This commit is contained in:
Tom Tromey 2000-04-11 20:02:48 +00:00 committed by Tom Tromey
parent 520babc783
commit c23c855f38
5 changed files with 17 additions and 9 deletions

View file

@ -1,4 +1,4 @@
/* Copyright (C) 1998, 1999 Free Software Foundation
/* Copyright (C) 1998, 1999, 2000 Free Software Foundation
This file is part of libgcj.
@ -20,7 +20,7 @@ import java.io.Serializable;
* Status: Believed complete and correct
*/
class VectorEnumeration implements Enumeration
final class VectorEnumeration implements Enumeration
{
private int enumIndex;
private Vector enumVec;