Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Batch grader test #344

Merged
merged 16 commits into from
Nov 15, 2022
Prev Previous commit
Next Next commit
Update HomePanel.java
  • Loading branch information
wei-jun7 committed Oct 24, 2022
commit 65731635129362515973a013912c67dda8f79273
9 changes: 5 additions & 4 deletions src/main/java/edu/rpi/legup/ui/HomePanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,20 238,21 @@ public void checkfolder(){
if (puzzle.isPuzzleComplete()) {
writer.append("Solved");
System.out.println(fileEntry.getName() " solved");
} else {
}
else {
writer.append("Not solved");
System.out.println(fileEntry.getName() " not solved");
}
writer.append("\n");
} catch (InvalidFileFormatException e) {
}
catch (InvalidFileFormatException e) {
LOGGER.error(e.getMessage());
}
}
}
if (count1 == 0){
writer.append("No file");
writer.append("\n");
}
writer.append("\n");}
}
}catch (IOException ex){
LOGGER.error(ex.getMessage());
Expand Down