Changeset 9975 in josm for trunk/src/org/openstreetmap/josm/corrector
- Timestamp:
- 2016-03-13T00:27:11+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/corrector/TagCorrector.java
r9067 r9975 46 46 public abstract Collection<Command> execute(P oldprimitive, P primitive) throws UserCancelException; 47 47 48 private final String[] applicationOptions= new String[] {48 private static final String[] APPLICATION_OPTIONS = new String[] { 49 49 tr("Apply selected changes"), 50 50 tr("Do not apply changes"), … … 133 133 JOptionPane.PLAIN_MESSAGE, 134 134 null, 135 applicationOptions,136 applicationOptions[0]135 APPLICATION_OPTIONS, 136 APPLICATION_OPTIONS[0] 137 137 ); 138 138
Note:
See TracChangeset
for help on using the changeset viewer.