Skip to content

Commit

Permalink
remove debugging code
Browse files Browse the repository at this point in the history
  • Loading branch information
Algebro7 committed Aug 25, 2024
1 parent 520e41d commit 38a7681
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,6 @@ private void loadContractGenerationNodeFromXml(Node node) {
HiringHallLevel level = HiringHallLevel.NONE;
if (wn2.getAttributes().getNamedItem("level") != null) {
try {
String text = wn2.getAttributes().getNamedItem("level").getTextContent().toUpperCase();
level = HiringHallLevel.valueOf(wn2.getAttributes().getNamedItem("level").getTextContent().toUpperCase());
} catch (IllegalArgumentException e) {
LogManager.getLogger().warn("Invalid value for Hiring Hall level, falling back to NONE: " + e);
Expand Down

0 comments on commit 38a7681

Please sign in to comment.