Skip to content

Commit

Permalink
[MINOR] Fix bug in transform spec parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
phaniarnab committed Jul 22, 2024
1 parent e6eebb9 commit a09b698
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public static <T> boolean intersect(Collection<T>... inputs) {
//if the item is in the seen set, return true
if (probe.contains(item))
return true;
probe.addAll(inputs[i]);
probe.addAll(nonEmpty[i]);
}
return false;
}
Expand Down

0 comments on commit a09b698

Please sign in to comment.