]> gerrit.simantics Code Review - simantics/platform.git/commitdiff
Fixed function name clash in Simantics/DB#createList 01/901/1
authorTuukka Lehtonen <tuukka.lehtonen@semantum.fi>
Fri, 1 Sep 2017 13:00:37 +0000 (16:00 +0300)
committerTuukka Lehtonen <tuukka.lehtonen@semantum.fi>
Fri, 1 Sep 2017 13:00:37 +0000 (16:00 +0300)
The second createList is now createListWithType which takes the type of
the list as the first argument.

refs #7390

Change-Id: I8b52f792cb683bfc764ecd7a53bfb9b0c76b4d5f

bundles/org.simantics.db.common/src/org/simantics/db/common/utils/ListUtils.java
bundles/org.simantics.scl.db/scl/Simantics/DB.scl

index 15910147ae4d25a50837e50b03e2245b9136e107..4d6518524d2ad1c31ebe98f890d17d975743ce4c 100644 (file)
@@ -50,7 +50,7 @@ public class ListUtils {
     }
     
     /**
-     * Creates a list containing the givens {@code elements}.
+     * Creates a list containing the given {@code elements}.
      */
     public static Resource create(WriteGraph g, Iterable<Resource> elements) throws DatabaseException {
         Layer0 L0 = Layer0.getInstance(g);
@@ -63,7 +63,7 @@ public class ListUtils {
     }
 
     /**
-     * Creates a list containing the givens {@code elements}.
+     * Creates a list of the given list type containing the given {@code elements}.
      */
     public static Resource create(WriteGraph g, Resource type, Iterable<Resource> elements) throws DatabaseException {
         Layer0 L0 = Layer0.getInstance(g);
index 30608067d7a6353545f53a5a4d00c5a93962826c..702c710c8bb3b55a8f3b77ebea9a3ae1188442f9 100644 (file)
@@ -270,7 +270,7 @@ importJava "org.simantics.db.common.utils.ListUtils" where
     createList :: [Resource] -> <WriteGraph> Resource
 
     @JavaName create
-    createList :: Resource -> [Resource] -> <WriteGraph> Resource
+    createListWithType :: Resource -> [Resource] -> <WriteGraph> Resource
     
     @javaName insertBack
     insertBack :: Resource -> [Resource] -> <WriteGraph> ()