Skip to content

Commit

Permalink
Remove Unused HiddenHttpMethodFilter
Browse files Browse the repository at this point in the history
  • Loading branch information
mklinkj committed Jan 15, 2024
1 parent be783f9 commit 41a712b
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@

package example;

import jakarta.servlet.Filter;

import org.springframework.web.filter.HiddenHttpMethodFilter;
import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer;

public class MvcWebApplicationInitializer extends AbstractAnnotationConfigDispatcherServletInitializer {
Expand All @@ -38,9 +35,4 @@ protected String[] getServletMappings() {
return new String[] { "/" };
}

@Override
protected Filter[] getServletFilters() {
return new Filter[] { new HiddenHttpMethodFilter() };
}

}

0 comments on commit 41a712b

Please sign in to comment.