Skip to content

Commit

Permalink
Update SearchPanel.java
Browse files Browse the repository at this point in the history
  • Loading branch information
bit4woo committed Apr 9, 2024
1 parent fb0a984 commit 8d98f58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/InternetSearch/SearchPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public String getStatusInfo(List<SearchResultEntry> entries,List<String> engines
String source = entry.getSource();
if (engines.contains(source)) {
int num = status.get(source);
status.put(source, num++);
status.put(source, num + 1);
}else {
unknown++;
}
Expand Down

0 comments on commit 8d98f58

Please sign in to comment.