This is an automated email from the ASF dual-hosted git repository.
sergeykamov pushed a commit to branch NLPCRAFT-283
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git
The following commit(s) were added to refs/heads/NLPCRAFT-283 by this push:
new 9c5e51a WIP.
9c5e51a is described below
commit 9c5e51a17826d17b986f446cf14ba2e072a102ef
Author: Sergey Kamov <[email protected]>
AuthorDate: Thu Mar 25 18:16:46 2021 +0300
WIP.
---
.../src/test/scala/org/apache/nlpcraft/model/dialog/NCDialogSpec2.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/nlpcraft/src/test/scala/org/apache/nlpcraft/model/dialog/NCDialogSpec2.scala
b/nlpcraft/src/test/scala/org/apache/nlpcraft/model/dialog/NCDialogSpec2.scala
index 982384c..76f5345 100644
---
a/nlpcraft/src/test/scala/org/apache/nlpcraft/model/dialog/NCDialogSpec2.scala
+++
b/nlpcraft/src/test/scala/org/apache/nlpcraft/model/dialog/NCDialogSpec2.scala
@@ -30,7 +30,7 @@ class NCDialogSpecModelFlow2 {
def invalidDef1(flow: java.util.List[NCDialogFlowItem]): String = "string"
def invalidDef2(): Boolean = true
def invalidDef3(flow: java.util.List[NCDialogFlowItem]): Boolean = throw
new IllegalStateException()
- def invalidDef4(flow: java.util.List[NCDialogFlowItem]): Boolean = null
+ def invalidDef4(flow: java.util.List[NCDialogFlowItem]): java.lang.Boolean
= null
def validDef(flow: java.util.List[NCDialogFlowItem]): Boolean = true
}