Changeset 3202 in josm
- Timestamp:
- 2010-04-24T19:47:01+02:00 (15 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/Storage.java
r3158 r3202 411 411 412 412 private void align() { 413 if (mods != modCount) throw new ConcurrentModificationException(); 413 if (mods != modCount) { 414 System.err.println("Warning: ConcurrentModification"); 415 Thread.dumpStack(); 416 //throw new ConcurrentModificationException(); 417 } 414 418 while (slot < data.length && data[slot] == null) { 415 419 slot++; -
trunk/src/org/openstreetmap/josm/gui/dialogs/RelationListDialog.java
r3102 r3202 89 89 public RelationListDialog() { 90 90 super(tr("Relations"), "relationlist", tr("Open a list of all relations."), 91 Shortcut.registerShortcut("subwindow:relations", tr("Toggle: {0}", tr("Relations")), KeyEvent.VK_R, Shortcut.GROUP_LAYER), 150); 91 Shortcut.registerShortcut("subwindow:relations", tr("Toggle: {0}", tr("Relations")), KeyEvent.VK_R, 92 Shortcut.GROUP_LAYER, Shortcut.SHIFT_DEFAULT), 150); 92 93 93 94 // create the list of relations -
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java
r3146 r3202 1 1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm.gui.dialogs.properties; 3 3 -
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/GenericRelationEditor.java
r3182 r3202 1 // License: GPL. For details, see LICENSE file. 1 2 package org.openstreetmap.josm.gui.dialogs.relation; 2 3
Note:
See TracChangeset
for help on using the changeset viewer.