Skip to content

Commit

Permalink
fix(java): removed debugging print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Nickersoft committed Jun 5, 2021
1 parent b64550d commit 444e9a3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion java/main/java/org/odict/Dictionary.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ public Dictionary(String path, Boolean index) throws IOException {
}

public Entry lookup(String term) {
System.out.println(Arrays.toString(term.getBytes(StandardCharsets.UTF_8)));
schema.Entry entry = this.dict.entriesByKey(term.toLowerCase());

if (entry == null) {
Expand Down

0 comments on commit 444e9a3

Please sign in to comment.