Changeset 6113 in josm for trunk/src/org/openstreetmap/josm/command
- Timestamp:
- 2013-08-06T22:02:27+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/PurgeCommand.java
r6069 r6113 192 192 193 193 /** 194 * Rest are relations. Do topological sorting on a DAG where each 195 * arrow points from child to parent. (Because it is faster to 196 * loop over getReferrers() than getMembers().) 197 */ 194 * Rest are relations. Do topological sorting on a DAG where each 195 * arrow points from child to parent. (Because it is faster to 196 * loop over getReferrers() than getMembers().) 197 */ 198 @SuppressWarnings({ "unchecked", "rawtypes" }) 198 199 Set<Relation> inR = (Set) in; 199 200 Set<Relation> childlessR = new HashSet<Relation>();
Note:
See TracChangeset
for help on using the changeset viewer.