diff --git a/dbms/src/test/java/org/polypheny/db/cypher/MatchTest.java b/dbms/src/test/java/org/polypheny/db/cypher/MatchTest.java index 48446f439b..fc8d19772f 100644 --- a/dbms/src/test/java/org/polypheny/db/cypher/MatchTest.java +++ b/dbms/src/test/java/org/polypheny/db/cypher/MatchTest.java @@ -38,9 +38,9 @@ public void reset() { } - /////////////////////////////////////////////// - ///////// MATCH - /////////////////////////////////////////////// + /// //////////////////////////////////////////// + /// ////// MATCH + /// //////////////////////////////////////////// @Test public void simpleMatchTest() { GraphResult res = execute( "MATCH (n) RETURN n" ); @@ -109,9 +109,10 @@ public void simpleMatchMultiplePropertyTest() { } - /////////////////////////////////////////////// - ///////// PROJECT - /////////////////////////////////////////////// + + /// //////////////////////////////////////////// + /// ////// PROJECT + /// //////////////////////////////////////////// @Test @@ -142,9 +143,10 @@ public void mixedNodeAndPropertyProjectTest() { assert is( res, Type.ANY, 1 ); } - /////////////////////////////////////////////// - ///////// EDGE - /////////////////////////////////////////////// + + /// //////////////////////////////////////////// + /// ////// EDGE + /// //////////////////////////////////////////// @Test @@ -236,9 +238,10 @@ assert containsRows( res, true, false, Row.of( TestNode.from( List.of( "Animal" ), Pair.of( "name", "Kira" ) ) ) ); } - /////////////////////////////////////////////// - ///////// MIXED - /////////////////////////////////////////////// + + /// //////////////////////////////////////////// + /// ////// MIXED + /// //////////////////////////////////////////// @Test @@ -257,9 +260,10 @@ assert containsIn( res, true, 1, TestNode.from( } - /////////////////////////////////////////////// - ///////// "CROSS PRODUCT" MATCH - /////////////////////////////////////////////// + + /// //////////////////////////////////////////// + /// ////// "CROSS PRODUCT" MATCH + /// //////////////////////////////////////////// @Test @@ -338,9 +342,10 @@ assert containsRows( res, true, false, Row.of( HANS, HANS, HANS ) ); } - /////////////////////////////////////////////// - ///////// PATH - /////////////////////////////////////////////// + + /// //////////////////////////////////////////// + /// ////// PATH + /// //////////////////////////////////////////// @Test diff --git a/webui/src/main/java/org/polypheny/db/webui/crud/LanguageCrud.java b/webui/src/main/java/org/polypheny/db/webui/crud/LanguageCrud.java index 37576d5a6a..8c73af71bd 100644 --- a/webui/src/main/java/org/polypheny/db/webui/crud/LanguageCrud.java +++ b/webui/src/main/java/org/polypheny/db/webui/crud/LanguageCrud.java @@ -67,7 +67,6 @@ import org.polypheny.db.type.PolyType; import org.polypheny.db.type.entity.PolyValue; import org.polypheny.db.type.entity.graph.PolyGraph; -import org.polypheny.db.type.entity.graph.PolyPath; import org.polypheny.db.type.entity.relational.PolyMap; import org.polypheny.db.util.Pair; import org.polypheny.db.util.PolyphenyHomeDirManager; @@ -532,4 +531,3 @@ public interface TriFunction { } } -