Changeset 7436 in josm for trunk/src/org/openstreetmap/josm/data/osm/Storage.java
- Timestamp:
- 2014-08-20T14:36:08+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/Storage.java
r7005 r7436 3 3 4 4 import java.util.AbstractSet; 5 import java.util.Arrays;6 5 import java.util.Collection; 7 6 import java.util.ConcurrentModificationException; … … 10 9 import java.util.NoSuchElementException; 11 10 import java.util.Set; 11 12 import org.openstreetmap.josm.tools.Utils; 12 13 13 14 /** … … 148 149 private void copyArray() { 149 150 if (arrayCopyNecessary) { 150 data = Arrays.copyOf(data, data.length);151 data = Utils.copyArray(data); 151 152 arrayCopyNecessary = false; 152 153 }
Note:
See TracChangeset
for help on using the changeset viewer.
