Revision 1276 org.gvsig.tools/library/trunk/org.gvsig.tools/org.gvsig.tools.lib/src/main/java/org/gvsig/tools/persistence/impl/AbstractPersistentState.java

View differences:

AbstractPersistentState.java
205 205
	}
206 206

  
207 207
	public Iterator getIterator(String name) throws PersistenceException {
208
		return ((Collection) get(name)).iterator();
208
                Collection collection = (Collection) get(name);
209
		return collection.iterator();
209 210
	}
210 211

  
211 212
	public long getLong(String name) throws PersistenceException {

Also available in: Unified diff