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 ec88d2f CR WIP
ec88d2f is described below
commit ec88d2fc309ed1970115fedab0e8f2a14fdd26c0
Author: Aaron Radzinski <[email protected]>
AuthorDate: Mon Jan 17 09:52:05 2022 -0800
CR WIP
---
nlpcraft/src/main/scala/org/apache/nlpcraft/NCEntity.java | 1 -
.../scala/org/apache/nlpcraft/internal/ascii/NCAsciiTable.scala | 4 ++++
.../nlpcraft/nlp/entity/parser/semantic/NCSemanticElement.java | 6 +-----
3 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/NCEntity.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/NCEntity.java
index 91dfa73..5069b03 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/NCEntity.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/NCEntity.java
@@ -17,7 +17,6 @@
package org.apache.nlpcraft;
-import java.util.Collections;
import java.util.*;
/**
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/internal/ascii/NCAsciiTable.scala
b/nlpcraft/src/main/scala/org/apache/nlpcraft/internal/ascii/NCAsciiTable.scala
index cc43ff9..1490b94 100644
---
a/nlpcraft/src/main/scala/org/apache/nlpcraft/internal/ascii/NCAsciiTable.scala
+++
b/nlpcraft/src/main/scala/org/apache/nlpcraft/internal/ascii/NCAsciiTable.scala
@@ -119,18 +119,22 @@ class NCAsciiTable:
* between individual rows.
*/
var insideBorder = false
+
/**
* Global Flag indicating whether of not to automatically draw horizontal
lines
* for multiline rows.
*/
var multiLineAutoBorder = true
+
/**
* If lines exceeds the style's maximum width it will be broken up
* either by nearest space (by whole words) or mid-word.
*/
var breakUpByWords = true
+
/** Default row style. */
var defaultRowStyle: String = DFLT_ROW_STYLE
+
/** Default header style. */
var defaultHeaderStyle: String = DFLT_HEADER_STYLE
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/nlp/entity/parser/semantic/NCSemanticElement.java
b/nlpcraft/src/main/scala/org/apache/nlpcraft/nlp/entity/parser/semantic/NCSemanticElement.java
index 882734d..135502e 100644
---
a/nlpcraft/src/main/scala/org/apache/nlpcraft/nlp/entity/parser/semantic/NCSemanticElement.java
+++
b/nlpcraft/src/main/scala/org/apache/nlpcraft/nlp/entity/parser/semantic/NCSemanticElement.java
@@ -17,11 +17,7 @@
package org.apache.nlpcraft.nlp.entity.parser.semantic;
-import java.util.Collections;
-import java.util.List;
-import java.util.Map;
-import java.util.Set;
-
+import java.util.*;
/**
*
*/