You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nlpcraft.apache.org by ar...@apache.org on 2022/09/01 18:07:20 UTC

[incubator-nlpcraft] branch master updated: Update NCGlobals.scala

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 62520e75 Update NCGlobals.scala
     new 4d375b63 Merge branch 'master' of https://github.com/apache/incubator-nlpcraft
62520e75 is described below

commit 62520e7529c082802cfeb10a4f71edcda61870ab
Author: Aaron Radzinski <ar...@datalingvo.com>
AuthorDate: Thu Sep 1 11:07:10 2022 -0700

    Update NCGlobals.scala
---
 nlpcraft/src/main/scala/org/apache/nlpcraft/NCGlobals.scala | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/NCGlobals.scala b/nlpcraft/src/main/scala/org/apache/nlpcraft/NCGlobals.scala
index 28db2ce3..2312949a 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/NCGlobals.scala
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/NCGlobals.scala
@@ -29,9 +29,6 @@ import scala.annotation.targetName
   */
 def E[T](msg: String, cause: Throwable = null): T = throw new NCException(msg, cause)
 
-// Internal deep debug flag (more verbose tracing).
-final val DEEP_DEBUG = false
-
 extension[T](opt: Option[T])
     @targetName("equalEqualEqualOpt")
     def === (x: Option[T]): Boolean = opt.isDefined && x.isDefined && opt.get == x.get