Skip to content

Commit

Permalink
add a second catch and a finally to the try-catch block around the ha…
Browse files Browse the repository at this point in the history
…ndleClearListValCache on line 1296
  • Loading branch information
bikegeek committed Aug 15, 2024
1 parent d0cafe4 commit 06f5693
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions java/edu/ucar/metviewer/MVServlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -1296,7 +1296,12 @@ public void doPost(HttpServletRequest request, HttpServletResponse response) {
handleClearListValCache();
} catch (ParserConfigurationException e) {
logger.error(e.getMessage());
} catch (Exception e){
logger.error(e.getMessage());
} finally{
return;
}

try{
handleClearListStatCache();
} catch (ParserConfigurationException e) {
Expand Down

0 comments on commit 06f5693

Please sign in to comment.