You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nlpcraft.apache.org by se...@apache.org on 2021/02/19 09:07:09 UTC

[incubator-nlpcraft] branch NLPCRAFT-91 updated: Minir fixes (imports).

This is an automated email from the ASF dual-hosted git repository.

sergeykamov pushed a commit to branch NLPCRAFT-91
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git


The following commit(s) were added to refs/heads/NLPCRAFT-91 by this push:
     new 211f6fe  Minir fixes (imports).
211f6fe is described below

commit 211f6fe62452488235b18e154964a225641c8f2d
Author: Sergey Kamov <sk...@gmail.com>
AuthorDate: Fri Feb 19 12:06:54 2021 +0300

    Minir fixes (imports).
---
 .../nlpcraft/probe/mgrs/deploy/NCDeployManager.scala | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/probe/mgrs/deploy/NCDeployManager.scala b/nlpcraft/src/main/scala/org/apache/nlpcraft/probe/mgrs/deploy/NCDeployManager.scala
index f888e47..4a30ba8 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/probe/mgrs/deploy/NCDeployManager.scala
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/probe/mgrs/deploy/NCDeployManager.scala
@@ -17,34 +17,34 @@
 
 package org.apache.nlpcraft.probe.mgrs.deploy
 
+import java.io._
+import java.lang.reflect.{InvocationTargetException, Method, ParameterizedType, Type, WildcardType}
+import java.util
+import java.util.function.Function
+import java.util.jar.JarInputStream
+import java.util.regex.{Pattern, PatternSyntaxException}
 import io.opencensus.trace.Span
+import org.apache.nlpcraft.model.NCModelView._
 import org.apache.nlpcraft.common._
 import org.apache.nlpcraft.common.ascii.NCAsciiTable
 import org.apache.nlpcraft.common.config.NCConfigurable
 import org.apache.nlpcraft.common.makro.NCMacroParser
 import org.apache.nlpcraft.common.nlp.core.{NCNlpCoreManager, NCNlpPorterStemmer}
 import org.apache.nlpcraft.common.util.NCUtils.{DSL_FIX, REGEX_FIX}
-import org.apache.nlpcraft.model.NCModelView._
 import org.apache.nlpcraft.model._
 import org.apache.nlpcraft.model.factories.basic.NCBasicModelFactory
 import org.apache.nlpcraft.model.intent.impl.{NCIntentDslCompiler, NCIntentSolver}
 import org.apache.nlpcraft.model.intent.utils.NCDslIntent
 import org.apache.nlpcraft.probe.mgrs.NCProbeSynonymChunkKind.{DSL, REGEX, TEXT}
-import org.apache.nlpcraft.probe.mgrs.model.NCModelSynonymDslCompiler
 import org.apache.nlpcraft.probe.mgrs.{NCProbeModel, NCProbeSynonym, NCProbeSynonymChunk}
+import org.apache.nlpcraft.probe.mgrs.model.NCModelSynonymDslCompiler
 import resource.managed
 
-import java.io._
-import java.lang.reflect._
-import java.util
-import java.util.function.Function
-import java.util.jar.JarInputStream
-import java.util.regex.{Pattern, PatternSyntaxException}
 import scala.collection.JavaConverters._
+import scala.compat.java8.OptionConverters._
 import scala.collection.convert.DecorateAsScala
-import scala.collection.mutable.{ArrayBuffer, ListBuffer}
 import scala.collection.{Map, Seq, Set, mutable}
-import scala.compat.java8.OptionConverters._
+import scala.collection.mutable.{ArrayBuffer, ListBuffer}
 import scala.util.control.Exception._
 
 /**