Skip to content

Commit

Permalink
Remove unused import.
Browse files Browse the repository at this point in the history
The change that led to this unused import is actually positive: cl/687471414 essentially accidentally switched a 2-arg `min` call from using the varargs `Int.min` to using `Math.min`. That's good. But it added static imports for both `min` methods, leaving this one unused.

RELNOTES=n/a
PiperOrigin-RevId: 691521225
  • Loading branch information
cpovirk authored and Google Java Core Libraries committed Oct 30, 2024
1 parent 85d08ec commit 5a63833
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion android/guava/src/com/google/common/hash/HashCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.base.Preconditions.checkState;
import static com.google.common.primitives.Ints.min;
import static java.lang.Math.min;

import com.google.common.base.Preconditions;
Expand Down
1 change: 0 additions & 1 deletion guava/src/com/google/common/hash/HashCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.base.Preconditions.checkState;
import static com.google.common.primitives.Ints.min;
import static java.lang.Math.min;

import com.google.common.base.Preconditions;
Expand Down

0 comments on commit 5a63833

Please sign in to comment.