Changeset 16916 in josm for trunk/src/org
- Timestamp:
- 2020-08-23T17:23:30+02:00 (4 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/preferences/projection/GaussKruegerProjectionChoice.java
r16913 r16916 16 16 public class GaussKruegerProjectionChoice extends ListProjectionChoice { 17 17 18 private static final String[] zones= {"2", "3", "4", "5"};18 private static final String[] ZONES = {"2", "3", "4", "5"}; 19 19 20 20 /** … … 22 22 */ 23 23 public GaussKruegerProjectionChoice() { 24 super(tr("Gau\u00DF-Kr\u00FCger"), /* NO-ICON */ "core:gauss-krueger", zones, tr("GK Zone"));24 super(tr("Gau\u00DF-Kr\u00FCger"), /* NO-ICON */ "core:gauss-krueger", ZONES, tr("GK Zone")); 25 25 } 26 26 -
trunk/src/org/openstreetmap/josm/gui/preferences/projection/LambertCC9ZonesProjectionChoice.java
r16913 r16916 23 23 public class LambertCC9ZonesProjectionChoice extends ListProjectionChoice { 24 24 25 private static final String[] lambert9zones= {25 private static final String[] LAMBERT_9_ZONES = { 26 26 tr("{0} ({1} to {2} degrees)", 1, 41, 43), 27 27 tr("{0} ({1} to {2} degrees)", 2, 42, 44), … … 39 39 */ 40 40 public LambertCC9ZonesProjectionChoice() { 41 super(tr("Lambert CC9 Zone (France)"), /* NO-ICON */ "core:lambertcc9", lambert9zones, tr("Lambert CC Zone"));41 super(tr("Lambert CC9 Zone (France)"), /* NO-ICON */ "core:lambertcc9", LAMBERT_9_ZONES, tr("Lambert CC Zone")); 42 42 } 43 43 -
trunk/src/org/openstreetmap/josm/tools/bugreport/BugReportQueue.java
r16913 r16916 91 91 private class BugReportDisplayRunnable implements Runnable { 92 92 93 private finalboolean running = true;93 private volatile boolean running = true; 94 94 95 95 @Override
Note:
See TracChangeset
for help on using the changeset viewer.