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

refs #7390

Change-Id: I8b52f792cb683bfc764ecd7a53bfb9b0c76b4d5f
(cherry picked from commit 4be719091f987e1377657949584f28665c852ce3)

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 32019768b2f08e7c6bb930a014fa8d656413ba0b..f2984f36958db216ec19d440fe1c351f47bc09fb 100644 (file)
@@ -267,7 +267,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> ()