Changeset 30532 in osm for applications/editors/josm/plugins/junctionchecking/src
- Timestamp:
- 2014-07-14T04:18:06+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/junctionchecking/src/org/openstreetmap/josm/plugins/JunctionChecker/junctionchecking/JunctionChecker.java
r25501 r30532 122 122 */ 123 123 private ArrayList<HashSet<Channel>> checkJunctionCandidates(ArrayList<HashSet<Channel>> junctioncandidates){ 124 ArrayList<HashSet<Channel>> junctions = (ArrayList<HashSet<Channel>>) junctioncandidates.clone(); 124 @SuppressWarnings("unchecked") 125 ArrayList<HashSet<Channel>> junctions = (ArrayList<HashSet<Channel>>) junctioncandidates.clone(); 125 126 for (int i = 0; i < junctioncandidates.size(); i++) { 126 127 for (int j = 0; j < junctioncandidates.size(); j++) {
Note:
See TracChangeset
for help on using the changeset viewer.