Changeset 15851 in josm
- Timestamp:
- 2020-02-14T12:45:34+01:00 (5 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/SyncEditorLayerIndex.java
r15850 r15851 251 251 if (res.matches()) { 252 252 String s = res.group(2); 253 if(s.endsWith("...")) 254 { 253 if (s.endsWith("...")) { 255 254 s = s.substring(0, s.length() - 3); 256 255 if ("Ignore".equals(res.group(1))) { … … 259 258 skipStart.put(s, "darkgoldenrod"); 260 259 } 261 } 262 else 263 { 260 } else { 264 261 if ("Ignore".equals(res.group(1))) { 265 262 skip.put(s, "green"); … … 294 291 return null; 295 292 } 296 293 297 294 void myprintln(String s) { 298 295 String color; -
trunk/src/org/openstreetmap/josm/actions/AbstractMergeAction.java
r15786 r15851 45 45 46 46 /** 47 * <code>TargetLayerDialogResult</code> returned by {@link #askTargetLayer (List, String, boolean)}47 * <code>TargetLayerDialogResult</code> returned by {@link #askTargetLayer} 48 48 * containing the selectedTargetLayer and whether the checkbox is ticked 49 49 * @param <T> type of layer -
trunk/src/org/openstreetmap/josm/gui/autofilter/AutoFilterManager.java
r15839 r15851 204 204 } 205 205 206 private NavigableSet<Integer> getNumericValues() { 206 private synchronized NavigableSet<Integer> getNumericValues() { 207 207 DataSet ds = MainApplication.getLayerManager().getActiveDataSet(); 208 208 if (ds == null) {
Note:
See TracChangeset
for help on using the changeset viewer.