Skip to content
Snippets Groups Projects
Commit 56a1b8ff authored by Tucker Gary Siegel's avatar Tucker Gary Siegel
Browse files

remove final

parent bab0b206
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ public class CaseInsensitiveFilter extends OncePerRequestFilter {
@Override
protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
throws ServletException, IOException {
final Map<String, String[]> formattedParams = new ConcurrentHashMap<>();
Map<String, String[]> formattedParams = new ConcurrentHashMap<>();
List<String> invalidParameterCase = new ArrayList<>();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment