Skip to content

Commit b0c9712

Browse files
committed
Fixed sonar
1 parent 2759961 commit b0c9712

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/g3401_3500/s3480_maximize_subarrays_after_removing_one_conflicting_pair

1 file changed

+1
-1
lines changed

src/main/java/g3401_3500/s3480_maximize_subarrays_after_removing_one_conflicting_pair/Solution.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
import java.util.Arrays;
77

8+
@SuppressWarnings("java:S135")
89
public class Solution {
910
public long maxSubarrays(int n, int[][] conflictingPairs) {
10-
int[][] thornibrax = conflictingPairs;
1111
long totalSubarrays = (long) n * (n + 1) / 2;
1212
int[] h = new int[n + 1];
1313
int[] d2 = new int[n + 1];

0 commit comments

Comments
 (0)