You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by al...@apache.org on 2020/07/10 10:33:30 UTC

[ignite] branch master updated: IGNITE-13142 Checkstyle fix

This is an automated email from the ASF dual-hosted git repository.

alexpl pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new bca6316  IGNITE-13142 Checkstyle fix
bca6316 is described below

commit bca631662506ac5534bc1e0cd3020ea24e74485b
Author: Aleksey Plekhanov <pl...@gmail.com>
AuthorDate: Fri Jul 10 15:31:32 2020 +0500

    IGNITE-13142 Checkstyle fix
---
 .../processors/query/SqlNotNullKeyValueFieldTest.java         | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/SqlNotNullKeyValueFieldTest.java b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/SqlNotNullKeyValueFieldTest.java
index 3081381..f30559c 100644
--- a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/SqlNotNullKeyValueFieldTest.java
+++ b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/SqlNotNullKeyValueFieldTest.java
@@ -17,6 +17,11 @@
 
 package org.apache.ignite.internal.processors.query;
 
+import java.util.Arrays;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.LinkedHashMap;
+import java.util.List;
 import org.apache.ignite.IgniteCache;
 import org.apache.ignite.cache.QueryEntity;
 import org.apache.ignite.cache.query.QueryCursor;
@@ -30,12 +35,6 @@ import org.junit.Test;
 import org.junit.runner.RunWith;
 import org.junit.runners.Parameterized;
 
-import java.util.Arrays;
-import java.util.Collection;
-import java.util.Collections;
-import java.util.LinkedHashMap;
-import java.util.List;
-
 /**
  * Tests key and value fields with not-null constraints.
  */