Skip to content

Commit

Permalink
Removing needless debugging messages
Browse files Browse the repository at this point in the history
  • Loading branch information
marigostra committed Mar 3, 2024
1 parent 57c73ba commit 0b5fc57
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/java/org/luwrain/nlp/SpellText.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ public SpellText(String[] text, SpellChecker checker)
{
this.text = text[0];
fragments.add(new Fragment(0, text[0].length()));
Log.debug(LOG_COMPONENT, "Checking '" + this.text + "'");
this.problems = filterExclusions(this.text, checker.check(this.text));
return;
}
Expand All @@ -61,7 +60,6 @@ public SpellText(String[] text, SpellChecker checker)
this.text = new String(b);
if (fragments.size() != text.length)
throw new IllegalStateException("the fragments and text arrays have different length");
Log.debug(LOG_COMPONENT, "Checking '" + this.text + "'");
this.problems = filterExclusions(this.text, checker.check(this.text));
}

Expand Down

0 comments on commit 0b5fc57

Please sign in to comment.