Ignore:
Timestamp:
2010-04-24T19:47:01+02:00 (14 years ago)
Author:
bastiK
Message:

preliminary fix for (see #4861) (Don't raise exception, just give warning on the console)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/Storage.java

    r3158 r3202  
    411411
    412412        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            }
    414418            while (slot < data.length && data[slot] == null) {
    415419                slot++;
Note: See TracChangeset for help on using the changeset viewer.