Changeset 8840 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2015-10-09T02:12:45+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/AudioPlayer.java
r8510 r8840 26 26 public final class AudioPlayer extends Thread { 27 27 28 private static volatile AudioPlayer audioPlayer = null;28 private static volatile AudioPlayer audioPlayer; 29 29 30 30 private enum State { INITIALIZING, NOTPLAYING, PLAYING, PAUSED, INTERRUPTED } -
trunk/src/org/openstreetmap/josm/tools/BugReportExceptionHandler.java
r8836 r8840 41 41 public final class BugReportExceptionHandler implements Thread.UncaughtExceptionHandler { 42 42 43 private static boolean handlingInProgress = false;44 private static volatile BugReporterThread bugReporterThread = null;45 private static int exceptionCounter = 0;46 private static boolean suppressExceptionDialogs = false;43 private static boolean handlingInProgress; 44 private static volatile BugReporterThread bugReporterThread; 45 private static int exceptionCounter; 46 private static boolean suppressExceptionDialogs; 47 47 48 48 private static class BugReporterThread extends Thread { -
trunk/src/org/openstreetmap/josm/tools/CopyList.java
r8394 r8840 148 148 * Index of element to be returned by subsequent call to next. 149 149 */ 150 private int cursor = 0;150 private int cursor; 151 151 152 152 /** -
trunk/src/org/openstreetmap/josm/tools/Diff.java
r8624 r8840 107 107 With this heuristic, for files with a constant small density 108 108 of changes, the algorithm is linear in the file size. */ 109 public boolean heuristic = false;109 public boolean heuristic; 110 110 111 111 /** When set to true, the algorithm returns a guarranteed minimal 112 112 set of changes. This makes things slower, sometimes much slower. */ 113 public boolean noDiscards = false;113 public boolean noDiscards; 114 114 115 115 private int[] xvec, yvec; /* Vectors being compared. */ … … 376 376 } 377 377 378 private boolean inhibit = false;378 private boolean inhibit; 379 379 380 380 /** Adjust inserts/deletes of blank lines to join changes -
trunk/src/org/openstreetmap/josm/tools/I18n.java
r8513 r8840 171 171 "OptionPane.cancelButtonText" 172 172 }; 173 private static volatile Map<String, String> strings = null;174 private static volatile Map<String, String[]> pstrings = null;173 private static volatile Map<String, String> strings; 174 private static volatile Map<String, String[]> pstrings; 175 175 private static Map<String, PluralMode> languages = new HashMap<>(); 176 176 -
trunk/src/org/openstreetmap/josm/tools/ImageProvider.java
r8836 r8840 184 184 protected Collection<ClassLoader> additionalClassLoaders; 185 185 /** ordered list of overlay images */ 186 protected List<ImageOverlay> overlayInfo = null;186 protected List<ImageOverlay> overlayInfo; 187 187 188 188 private static SVGUniverse svgUniverse; -
trunk/src/org/openstreetmap/josm/tools/ImageResource.java
r8723 r8840 40 40 * ordered list of overlay images 41 41 */ 42 protected List<ImageOverlay> overlayInfo = null;43 private Image baseImage = null;42 protected List<ImageOverlay> overlayInfo; 43 private Image baseImage; 44 44 45 45 /** -
trunk/src/org/openstreetmap/josm/tools/Shortcut.java
r8720 r8840 311 311 312 312 // bootstrap 313 private static boolean initdone = false;313 private static boolean initdone; 314 314 private static void doInit() { 315 315 if (initdone) return; -
trunk/src/org/openstreetmap/josm/tools/TextTagParser.java
r8513 r8840 40 40 41 41 public static class TextAnalyzer { 42 private boolean quotesStarted = false;43 private boolean esc = false;42 private boolean quotesStarted; 43 private boolean esc; 44 44 private StringBuilder s = new StringBuilder(200); 45 45 private int pos; -
trunk/src/org/openstreetmap/josm/tools/XmlObjectParser.java
r8836 r8840 232 232 */ 233 233 private List<Object> queue = new LinkedList<>(); 234 private Iterator<Object> queueIterator = null;234 private Iterator<Object> queueIterator; 235 235 236 236 /**
Note:
See TracChangeset
for help on using the changeset viewer.