Revision 27057 branches/v2_0_0_prep/libraries/libGeocoding/src/org/gvsig/geocoding/geommatches/CrossLineMatcher.java

View differences:

CrossLineMatcher.java
27 27

  
28 28
package org.gvsig.geocoding.geommatches;
29 29

  
30

  
31 30
import java.util.ArrayList;
32 31
import java.util.HashMap;
33 32
import java.util.HashSet;
......
63 62

  
64 63
		// Group first features collection by one field
65 64
		HashMap geomstreets1 = groupFeaturesByAttribute(this
66
				.getGroupFieldPosition(), (List) this
67
				.getFeatures().get(0));
65
				.getGroupFieldPosition(), (List) this.getFeatures().get(0));
68 66
		List streets1 = new ArrayList();
69 67
		Iterator itt1 = geomstreets1.entrySet().iterator();
70 68
		while (itt1.hasNext()) {
......
85 83

  
86 84
		// Group second features collection by one field
87 85
		HashMap geomstreets2 = groupFeaturesByAttribute(this
88
				.getGroupFieldPosition(), (List) this
89
				.getFeatures().get(1));
86
				.getGroupFieldPosition(), (List) this.getFeatures().get(1));
90 87
		List streets2 = new ArrayList();
91 88
		Iterator itt2 = geomstreets2.entrySet().iterator();
92 89
		while (itt2.hasNext()) {

Also available in: Unified diff