You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2021/03/10 12:32:29 UTC

[ignite-3] branch ignite-13618 updated: IGNITE-13618 Whitespace

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

agoncharuk pushed a commit to branch ignite-13618
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/ignite-13618 by this push:
     new fc0783c  IGNITE-13618 Whitespace
fc0783c is described below

commit fc0783c3a0e68308be10f89c42c9616e54a5fbca
Author: Alexey Goncharuk <al...@gmail.com>
AuthorDate: Wed Mar 10 15:32:24 2021 +0300

    IGNITE-13618 Whitespace
---
 .../apache/ignite/internal/schema/SchemaDescriptorTest.java  | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/modules/commons/src/test/java/org/apache/ignite/internal/schema/SchemaDescriptorTest.java b/modules/commons/src/test/java/org/apache/ignite/internal/schema/SchemaDescriptorTest.java
index 13e5158..d58ad99 100644
--- a/modules/commons/src/test/java/org/apache/ignite/internal/schema/SchemaDescriptorTest.java
+++ b/modules/commons/src/test/java/org/apache/ignite/internal/schema/SchemaDescriptorTest.java
@@ -28,14 +28,14 @@ public class SchemaDescriptorTest {
     public void testColumnIndexedAccess() {
         SchemaDescriptor desc = new SchemaDescriptor(1,
             new Column[] {
-                new Column("columnA",NativeType.BYTE, false),
-                new Column("columnB",NativeType.UUID, false),
-                new Column("columnC",NativeType.INTEGER, false),
+                new Column("columnA", NativeType.BYTE, false),
+                new Column("columnB", NativeType.UUID, false),
+                new Column("columnC", NativeType.INTEGER, false),
             },
             new Column[] {
-                new Column("columnD",NativeType.BYTE, false),
-                new Column("columnE",NativeType.UUID, false),
-                new Column("columnF",NativeType.INTEGER, false),
+                new Column("columnD", NativeType.BYTE, false),
+                new Column("columnE", NativeType.UUID, false),
+                new Column("columnF", NativeType.INTEGER, false),
             }
         );