Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
bikegeek committed Jul 9, 2024
1 parent 5de4c9d commit cbb0776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/edu/ucar/metviewer/MVServlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -1318,7 +1318,7 @@ else if (nodeCall.tag.equalsIgnoreCase("db_con")) {
else if (nodeCall.tag.equalsIgnoreCase("list_val")) {
try {
strResp.append(handleListVal(nodeCall, requestBody.toString(), currentDbName));
} catch (ValidationException e|ParserConfigurationException e){
} catch (ValidationException |ParserConfigurationException e){
logger.info(e.getMessage());
}
}
Expand Down

0 comments on commit cbb0776

Please sign in to comment.