From fdde0d69f09fa6fc3fe11f6f5e7b0a1aeee33049 Mon Sep 17 00:00:00 2001 From: Artemiy Sartakov Date: Fri, 26 Jul 2019 12:42:56 +0700 Subject: [PATCH] ExplicitArrayFillingInspection: removed unnecessary imports from test (IDEA-CR-50510) GitOrigin-RevId: 3189600dc9f48a3d2d567ec829c575f7455c9f50 --- .../explicitArrayFilling/afterEmptyArrayCreation.java | 3 --- .../explicitArrayFilling/beforeEmptyArrayCreation.java | 3 --- 2 files changed, 6 deletions(-) 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][];