Ignore:
Timestamp:
2009-09-04T21:37:15+02:00 (15 years ago)
Author:
guggis
Message:

small cleanup of @deprecated field access

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/remotecontrol/src/org/openstreetmap/josm/plugins/remotecontrol/RequestProcessor.java

    r16965 r17457  
    195195                                }
    196196                            }
    197                             for (Way w : Main.main.getCurrentDataSet().ways) if (ways.contains(w.id)) newSel.add(w);
    198                             for (Node n : Main.main.getCurrentDataSet().nodes) if (nodes.contains(n.id)) newSel.add(n);
    199                             for (Relation r : Main.main.getCurrentDataSet().relations) if (relations.contains(r.id)) newSel.add(r);
     197                            for (Way w : Main.main.getCurrentDataSet().ways) if (ways.contains(w.getId())) newSel.add(w);
     198                            for (Node n : Main.main.getCurrentDataSet().nodes) if (nodes.contains(n.getId())) newSel.add(n);
     199                            for (Relation r : Main.main.getCurrentDataSet().relations) if (relations.contains(r.getId())) newSel.add(r);
    200200                            Main.main.getCurrentDataSet().setSelected(newSel);
    201201                            if (Main.pref.getBoolean("remotecontrol.permission.change-viewport", true))
Note: See TracChangeset for help on using the changeset viewer.