Loading core/java/android/util/ArrayMap.java +1 −1 Original line number Diff line number Diff line Loading @@ -129,7 +129,7 @@ public final class ArrayMap<K, V> implements Map<K, V> { return ContainerHelpers.binarySearch(hashes, N, hash); } catch (ArrayIndexOutOfBoundsException e) { if (CONCURRENT_MODIFICATION_EXCEPTIONS) { throw new ConcurrentModificationException(); throw new ConcurrentModificationException(e); } else { throw e; // the cache is poisoned at this point, there's not much we can do } Loading Loading
core/java/android/util/ArrayMap.java +1 −1 Original line number Diff line number Diff line Loading @@ -129,7 +129,7 @@ public final class ArrayMap<K, V> implements Map<K, V> { return ContainerHelpers.binarySearch(hashes, N, hash); } catch (ArrayIndexOutOfBoundsException e) { if (CONCURRENT_MODIFICATION_EXCEPTIONS) { throw new ConcurrentModificationException(); throw new ConcurrentModificationException(e); } else { throw e; // the cache is poisoned at this point, there's not much we can do } Loading