Skip to content

Commit

Permalink
Update Code Quality
Browse files Browse the repository at this point in the history
  • Loading branch information
Cazh1 committed Nov 12, 2023
1 parent 85dc084 commit f44d4a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/seedu/cafectrl/storage/Storage.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ private boolean isFileCorrupted(ArrayList<String> encodedStringArrayList) {
if (encodedMenuHash != fileHash) {
return true;
}
} catch (NumberFormatException e) {
} catch (Exception e) {
isHashStringTampered = true;
return true;
}
Expand Down

0 comments on commit f44d4a3

Please sign in to comment.