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 2021/02/09 07:59:12 UTC

[ignite-extensions] branch master updated: [MINOR] Ordered fields modifiers to pass checkstyle

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-extensions.git


The following commit(s) were added to refs/heads/master by this push:
     new 9806143  [MINOR] Ordered fields modifiers to pass checkstyle
9806143 is described below

commit 9806143343cb8ba7157642ff4108e6ca2a56ebae
Author: Aleksey Plekhanov <pl...@gmail.com>
AuthorDate: Tue Feb 9 10:55:12 2021 +0300

    [MINOR] Ordered fields modifiers to pass checkstyle
---
 .../org/apache/ignite/internal/performancestatistics/util/Utils.java    | 2 +-
 .../performancestatistics/PerformanceStatisticsPrinterTest.java         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/performance-statistics-ext/src/main/java/org/apache/ignite/internal/performancestatistics/util/Utils.java b/modules/performance-statistics-ext/src/main/java/org/apache/ignite/internal/performancestatistics/util/Utils.java
index 01a0312..cd7f1de 100644
--- a/modules/performance-statistics-ext/src/main/java/org/apache/ignite/internal/performancestatistics/util/Utils.java
+++ b/modules/performance-statistics-ext/src/main/java/org/apache/ignite/internal/performancestatistics/util/Utils.java
@@ -29,7 +29,7 @@ public class Utils {
     public static final ObjectMapper MAPPER = new ObjectMapper();
 
     /** */
-    private final static char[] HC = "0123456789ABCDEF".toCharArray();
+    private static final char[] HC = "0123456789ABCDEF".toCharArray();
 
     /** Creates empty object for given value if absent. */
     public static ObjectNode createObjectIfAbsent(String val, ObjectNode json) {
diff --git a/modules/performance-statistics-ext/src/test/java/org/apache/ignite/internal/performancestatistics/PerformanceStatisticsPrinterTest.java b/modules/performance-statistics-ext/src/test/java/org/apache/ignite/internal/performancestatistics/PerformanceStatisticsPrinterTest.java
index 4cd267f..f7dcd14 100644
--- a/modules/performance-statistics-ext/src/test/java/org/apache/ignite/internal/performancestatistics/PerformanceStatisticsPrinterTest.java
+++ b/modules/performance-statistics-ext/src/test/java/org/apache/ignite/internal/performancestatistics/PerformanceStatisticsPrinterTest.java
@@ -64,7 +64,7 @@ import static org.junit.Assert.fail;
  */
 public class PerformanceStatisticsPrinterTest {
     /** Test node ID. */
-    private final static UUID NODE_ID = UUID.randomUUID();
+    private static final UUID NODE_ID = UUID.randomUUID();
 
     /** */
     @Before