Skip to content

Commit

Permalink
chore: add println
Browse files Browse the repository at this point in the history
  • Loading branch information
edalex-yinzi committed Feb 15, 2024
1 parent 1fd4002 commit 23797b6
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ public boolean doesResultExist(PrefixedName title) {
public boolean doesResultExist(String title) {
boolean found = false;
int size = getResults().size();
System.out.println("Hello protal test the size is: " + size);
for (int i = 1; i <= size; i++) {
found = doesResultExist(title, i);
if (found) {
Expand Down

0 comments on commit 23797b6

Please sign in to comment.