Skip to content

Commit

Permalink
remove system out
Browse files Browse the repository at this point in the history
  • Loading branch information
Al Niessner authored and Al Niessner committed May 30, 2024
1 parent 08ef073 commit c67a789
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ private void updateIndex(ConnectionFactory conFact, String json) {
while (-1 < begin_index) {
end_index = json.indexOf('"', begin_index+5);
name = json.substring(begin_index, end_index);
System.out.println(name);
if (!alreadyLearned.contains(name)) {
try (RestClient client = conFact.createRestClient()) {
ArrayList<Tuple> new_item = new ArrayList<Tuple>();
Expand Down

0 comments on commit c67a789

Please sign in to comment.