You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by pa...@apache.org on 2008/02/03 22:11:35 UTC

svn commit: r618089 - /felix/trunk/framework/src/main/java/org/apache/felix/framework/util/IteratorToEnumeration.java

Author: pauls
Date: Sun Feb  3 13:11:33 2008
New Revision: 618089

URL: http://svn.apache.org/viewvc?rev=618089&view=rev
Log:
Make iterator member final to prevent visibility issues.

Modified:
    felix/trunk/framework/src/main/java/org/apache/felix/framework/util/IteratorToEnumeration.java

Modified: felix/trunk/framework/src/main/java/org/apache/felix/framework/util/IteratorToEnumeration.java
URL: http://svn.apache.org/viewvc/felix/trunk/framework/src/main/java/org/apache/felix/framework/util/IteratorToEnumeration.java?rev=618089&r1=618088&r2=618089&view=diff
==============================================================================
--- felix/trunk/framework/src/main/java/org/apache/felix/framework/util/IteratorToEnumeration.java (original)
+++ felix/trunk/framework/src/main/java/org/apache/felix/framework/util/IteratorToEnumeration.java Sun Feb  3 13:11:33 2008
@@ -23,7 +23,7 @@
 
 public class IteratorToEnumeration implements Enumeration
 {
-    private Iterator m_iter = null;
+    private final Iterator m_iter;
 
     public IteratorToEnumeration(Iterator iter)
     {