Changeset 9067 in josm for trunk/src/org/openstreetmap/josm/corrector
- Timestamp:
- 2015-11-28T18:26:23+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/corrector
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/corrector/CorrectionTableModel.java
r8510 r9067 11 11 public abstract class CorrectionTableModel<C extends Correction> extends AbstractTableModel { 12 12 13 private transient List<C> corrections;13 private final transient List<C> corrections; 14 14 private boolean[] apply; 15 private int applyColumn;15 private final int applyColumn; 16 16 17 17 public CorrectionTableModel(List<C> corrections) { -
trunk/src/org/openstreetmap/josm/corrector/TagCorrector.java
r9062 r9067 46 46 public abstract Collection<Command> execute(P oldprimitive, P primitive) throws UserCancelException; 47 47 48 private String[] applicationOptions = new String[] {48 private final String[] applicationOptions = new String[] { 49 49 tr("Apply selected changes"), 50 50 tr("Do not apply changes"),
Note:
See TracChangeset
for help on using the changeset viewer.