This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[GUI] Patch: javax.split.tree.DefaultMutableTreeNode
- From: Michael Koch <konqueror at gmx dot de>
- To: java-patches at gcc dot gnu dot org
- Date: Wed, 9 Jun 2004 11:45:00 +0200
- Subject: [GUI] Patch: javax.split.tree.DefaultMutableTreeNode
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi list,
I just commited the attached patch to rename enum to e to avoid usage
of the Java 1.5 keyword as variable name.
Michael
2004-06-09 Michael Koch <konqueror@gmx.de>
* javax/swing/tree/DefaultMutableTreeNode.java
(getLeafCount): Renamed enum to e.
- --
Homepage: http://www.worldforge.org/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)
iD8DBQFAxtwfWSOgCCdjSDsRAgBfAJ4yRCts6qDtzkSzo98uOIxnRD1zFACbBWsZ
L+kaGY0WFu4VRdYVuqGFgnk=
=Rnjj
-----END PGP SIGNATURE-----
Index: javax/swing/tree/DefaultMutableTreeNode.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/swing/tree/DefaultMutableTreeNode.java,v
retrieving revision 1.4
diff -u -b -B -r1.4 DefaultMutableTreeNode.java
--- javax/swing/tree/DefaultMutableTreeNode.java 12 Oct 2003 13:33:32 -0000 1.4
+++ javax/swing/tree/DefaultMutableTreeNode.java 9 Jun 2004 09:42:37 -0000
@@ -997,17 +997,17 @@
public int getLeafCount() {
// Variables
- Enumeration enum;
+ Enumeration e;
int count;
TreeNode current;
// Get Enumeration of all descendants
- enum = depthFirstEnumeration();
+ e = depthFirstEnumeration();
// Process Nodes
count = 0;
- while (enum.hasMoreElements() == true) {
- current = (TreeNode) enum.nextElement();
+ while (e.hasMoreElements() == true) {
+ current = (TreeNode) e.nextElement();
if (current.isLeaf() == true) {
count++;
} // if