Skip to content

Commit

Permalink
Uncomment try-catch near line 1318
Browse files Browse the repository at this point in the history
  • Loading branch information
bikegeek committed Jul 9, 2024
1 parent ed19309 commit 5de4c9d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions java/edu/ucar/metviewer/MVServlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -1316,10 +1316,11 @@ else if (nodeCall.tag.equalsIgnoreCase("db_con")) {

// <list_val>
else if (nodeCall.tag.equalsIgnoreCase("list_val")) {
//try {
try {
strResp.append(handleListVal(nodeCall, requestBody.toString(), currentDbName));
//} catch (ValidationException e) {
// logger.info(e.getMessage());
} catch (ValidationException e|ParserConfigurationException e){
logger.info(e.getMessage());
}
}

// <list_stat>
Expand Down

0 comments on commit 5de4c9d

Please sign in to comment.