diff --git a/java/java-tests/testData/inspection/explicitArrayFilling/afterEmptyArrayCreation.java b/java/java-tests/testData/inspection/explicitArrayFilling/afterEmptyArrayCreation.java index 6bbae5c85c70..d033a796a55a 100644 --- a/java/java-tests/testData/inspection/explicitArrayFilling/afterEmptyArrayCreation.java +++ b/java/java-tests/testData/inspection/explicitArrayFilling/afterEmptyArrayCreation.java @@ -1,8 +1,5 @@ // "Replace loop with 'Arrays.fill()' method call" "true" -import org.jetbrains.annotations.Contract; -import org.jetbrains.annotations.NotNull; - import java.util.Arrays; class Test { diff --git a/java/java-tests/testData/inspection/explicitArrayFilling/beforeEmptyArrayCreation.java b/java/java-tests/testData/inspection/explicitArrayFilling/beforeEmptyArrayCreation.java index f333557740b4..db6450d06189 100644 --- a/java/java-tests/testData/inspection/explicitArrayFilling/beforeEmptyArrayCreation.java +++ b/java/java-tests/testData/inspection/explicitArrayFilling/beforeEmptyArrayCreation.java @@ -1,8 +1,5 @@ // "Replace loop with 'Arrays.fill()' method call" "true" -import org.jetbrains.annotations.Contract; -import org.jetbrains.annotations.NotNull; - class Test { private void test2() { int[][] arr = new int[10][];