Skip to content

Commit

Permalink
AUS-4238 Remove updateGsmlpNSCache
Browse files Browse the repository at this point in the history
  • Loading branch information
vjf committed Oct 17, 2024
1 parent 1171e64 commit 9b91b69
Showing 1 changed file with 0 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -379,26 +379,4 @@ public void doFilterStyle(
styleStream.close();
outputStream.close();
}

/**
* NOT CURRENTLY USED
* This controller method is for forcing the internal cache of GsmlpNameSpaceTable to invalidate and update.
*
* @return
*/
/*
@RequestMapping("/updateGsmlpNSCache.do")
public ModelAndView updateGsmlpNSCache() throws Exception {
try {
if (gsmlpNameSpaceTable != null )
gsmlpNameSpaceTable.clearCache();
return generateJSONResponseMAV(true);
} catch (Exception e) {
log.warn(String.format("Error updating GsmlpNS cache: %1$s", e));
log.debug("Exception:", e);
return generateJSONResponseMAV(false);
}
}
*/
}

0 comments on commit 9b91b69

Please sign in to comment.