Changeset 383 in josm for trunk/src/org


Ignore:
Timestamp:
2007-10-14T00:11:21+02:00 (17 years ago)
Author:
gebner
Message:

Fix warnings reported by -Xlint.

Location:
trunk/src/org/openstreetmap/josm
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/mapmode/SelectAction.java

    r373 r383  
    183183                Collection<OsmPrimitive> sel = Main.ds.getSelected();
    184184                OsmPrimitive osm = Main.map.mapView.getNearest(e.getPoint());
    185                 Collection osmColl = osm == null
    186                         ? Collections.emptyList() : Collections.singleton(osm);
     185                Collection<OsmPrimitive> osmColl;
     186                if (osm == null) {
     187                        osmColl = Collections.emptySet();
     188                } else {
     189                        osmColl = Collections.singleton(osm);
     190                }
     191
    187192                if (ctrl && shift) {
    188193                        selectPrims(osmColl, true, false);
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/NameVisitor.java

    r354 r383  
    6262                if (name == null) {
    6363                        String what = (w.get("highway") != null) ? "highway " : (w.get("railway") != null) ? "railway " : (w.get("waterway") != null) ? "waterway " : "";
    64                         int nodesNo = new HashSet(w.nodes).size();
     64                        int nodesNo = new HashSet<Node>(w.nodes).size();
    6565                        name = what + trn("{0} node", "{0} nodes", nodesNo, nodesNo);
    6666                }
  • trunk/src/org/openstreetmap/josm/gui/dialogs/RelationListDialog.java

    r348 r383  
    9595                                Relation toDelete = (Relation) displaylist.getSelectedValue();
    9696                                if (toDelete != null) {
    97                                         Main.main.editLayer().add(new DeleteCommand(Collections.singleton(toDelete)));
     97                                        Main.main.undoRedo.add(
     98                                                new DeleteCommand(Collections.singleton(toDelete)));
    9899                                }
    99100                        }
  • trunk/src/org/openstreetmap/josm/gui/preferences/PluginPreference.java

    r343 r383  
    200200                String enabledProp = Main.pref.get("plugins");
    201201                if ((enabledProp == null) || ("".equals(enabledProp))) {
    202                         enabledPlugins = Collections.EMPTY_SET;
     202                        enabledPlugins = Collections.emptySet();
    203203                }
    204204                else
Note: See TracChangeset for help on using the changeset viewer.