Skip to content

Commit

Permalink
Chore: Added more options
Browse files Browse the repository at this point in the history
  • Loading branch information
UO283615 committed Apr 21, 2024
1 parent 6a57e1d commit c472b76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void processResults() {
List<Question> questions = new ArrayList<>();
List<Answer> answers = new ArrayList<>();

for (int i = 0; i < results.length()-10; i++) {
for (int i = 0; i < results.length(); i++) {

JSONObject result = results.getJSONObject(i);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void processResults() {
List<Question> questions = new ArrayList<>();
List<Answer> answers = new ArrayList<>();

for (int i = 0; i < results.length()-10; i++) {
for (int i = 0; i < results.length(); i++) {

JSONObject result = results.getJSONObject(i);

Expand Down

0 comments on commit c472b76

Please sign in to comment.