This is an automated email from the ASF dual-hosted git repository. sergeykamov pushed a commit to branch NLPCRAFT-366 in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft-java-client.git
commit 95796e8d6b972a3a6f04f1884b10d50e41c4b22e Author: Sergey Kamov <[email protected]> AuthorDate: Tue May 18 12:28:56 2021 +0300 WIP. --- src/test/java/org/apache/nlpcraft/client/models/NCCommonSpecModel.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/test/java/org/apache/nlpcraft/client/models/NCCommonSpecModel.java b/src/test/java/org/apache/nlpcraft/client/models/NCCommonSpecModel.java index 7708a62..fea3bee 100644 --- a/src/test/java/org/apache/nlpcraft/client/models/NCCommonSpecModel.java +++ b/src/test/java/org/apache/nlpcraft/client/models/NCCommonSpecModel.java @@ -22,7 +22,6 @@ import org.apache.nlpcraft.model.NCIntent; import org.apache.nlpcraft.model.NCResult; import java.util.Arrays; -import java.util.Collections; import java.util.HashMap; import java.util.HashSet; import java.util.Map; @@ -64,7 +63,7 @@ public class NCCommonSpecModel extends NCSpecModelAdapter { } @NCIntent("intent=intentMetaId term~{tok_id() == 'meta'}") - public org.apache.nlpcraft.model.NCResult onTestMeta() { + public org.apache.nlpcraft.model.NCResult onMeta() { NCResult res = NCResult.text("OK"); res.getMetadata().putAll(MAP);
