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)
     {


Reply via email to