Ignore:
Timestamp:
2013-08-06T22:02:27+02:00 (11 years ago)
Author:
Don-vip
Message:

fix some compilation warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/command/PurgeCommand.java

    r6069 r6113  
    192192
    193193        /**
    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" })
    198199        Set<Relation> inR = (Set) in;
    199200        Set<Relation> childlessR = new HashSet<Relation>();
Note: See TracChangeset for help on using the changeset viewer.