Changeset 7083 in josm for trunk/src/org/openstreetmap/josm/gui/preferences/advanced/PreferencesTable.java
- Timestamp:
- 2014-05-09T06:03:50+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/preferences/advanced/PreferencesTable.java
r7027 r7083 14 14 import java.util.List; 15 15 import java.util.Map; 16 import java.util.Objects; 16 17 17 18 import javax.swing.ButtonGroup; … … 35 36 import org.openstreetmap.josm.gui.widgets.JosmTextField; 36 37 import org.openstreetmap.josm.tools.GBC; 37 import org.openstreetmap.josm.tools.Utils;38 38 39 39 /** … … 192 192 if (sEditor.getValue() == 1) { 193 193 String data = sEditor.getData(); 194 if (! Utils.equal(sSetting.getValue(), data)) {194 if (!Objects.equals(sSetting.getValue(), data)) { 195 195 pe.setValue(new StringSetting(data)); 196 196 ok = true;
Note:
See TracChangeset
for help on using the changeset viewer.