You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jdo-commits@db.apache.org by cl...@apache.org on 2005/09/14 03:05:05 UTC

svn commit: r280730 - /incubator/jdo/trunk/tck11/test/java/org/apache/jdo/tck/enhancement/EnhancerTest.java

Author: clr
Date: Tue Sep 13 18:05:04 2005
New Revision: 280730

URL: http://svn.apache.org/viewcvs?rev=280730&view=rev
Log:
JDO-135 JDK 1.5 compiler warnings. Patch provided by Karan Malhi

Modified:
    incubator/jdo/trunk/tck11/test/java/org/apache/jdo/tck/enhancement/EnhancerTest.java

Modified: incubator/jdo/trunk/tck11/test/java/org/apache/jdo/tck/enhancement/EnhancerTest.java
URL: http://svn.apache.org/viewcvs/incubator/jdo/trunk/tck11/test/java/org/apache/jdo/tck/enhancement/EnhancerTest.java?rev=280730&r1=280729&r2=280730&view=diff
==============================================================================
--- incubator/jdo/trunk/tck11/test/java/org/apache/jdo/tck/enhancement/EnhancerTest.java (original)
+++ incubator/jdo/trunk/tck11/test/java/org/apache/jdo/tck/enhancement/EnhancerTest.java Tue Sep 13 18:05:04 2005
@@ -71,14 +71,14 @@
          */
         Properties classesToTest = getProperties("enhancement-test.properties"); //NOI18N
         
-        Enumeration enum = classesToTest.propertyNames();
+        Enumeration enumeration = classesToTest.propertyNames();
         int numberOfPackages = 0;
         
         /** Each key is a package name; the value is a list of class names to test.
          */
-        while (enum.hasMoreElements()) {
+        while (enumeration.hasMoreElements()) {
             ++numberOfPackages;
-            String packageName = (String) enum.nextElement();
+            String packageName = (String) enumeration.nextElement();
             if (debug) logger.debug("EnhancerTest Package: " + packageName);
             String classNames = (String) classesToTest.get(packageName);
             if (debug) logger.debug("EnhancerTest Classes: " + classNames);