Missed a reference to getChildren() in NestedSet to propagate
InterruptedExceptions.
PiperOrigin-RevId: 240202025
diff --git a/src/main/java/com/google/devtools/build/lib/collect/nestedset/NestedSet.java b/src/main/java/com/google/devtools/build/lib/collect/nestedset/NestedSet.java
index 11d3faf..7558519 100644
--- a/src/main/java/com/google/devtools/build/lib/collect/nestedset/NestedSet.java
+++ b/src/main/java/com/google/devtools/build/lib/collect/nestedset/NestedSet.java
@@ -419,7 +419,7 @@
if (memo == LEAF_MEMO) {
return ImmutableList.copyOf(new ArraySharingCollection<>((Object[]) children));
}
- CompactHashSet<E> members = lockedExpand();
+ CompactHashSet<E> members = lockedExpand(handleInterruptedException);
if (members != null) {
return ImmutableList.copyOf(members);
}
@@ -457,11 +457,12 @@
* If this is the first call for this object, fills {@code this.memo} and returns a set from
* {@link #walk}. Otherwise returns null; the caller should use {@link #replay} instead.
*/
- private synchronized CompactHashSet<E> lockedExpand() {
+ private synchronized CompactHashSet<E> lockedExpand(boolean handleInterruptedException)
+ throws InterruptedException {
if (memo != null) {
return null;
}
- Object[] children = (Object[]) this.getChildren();
+ Object[] children = (Object[]) this.getChildren(handleInterruptedException);
CompactHashSet<E> members = CompactHashSet.createWithExpectedSize(128);
CompactHashSet<Object> sets = CompactHashSet.createWithExpectedSize(128);
sets.add(children);