Browse Source

Fix HeaderWriterFilter Javadoc

Fixes the formatting and spelling in HeaderWriterFilter Javadoc

Issue gh-3813
pull/3821/head
Simon Olofsson 10 years ago committed by Rob Winch
parent
commit
337a7ed35e
  1. 4
      web/src/main/java/org/springframework/security/web/header/HeaderWriterFilter.java

4
web/src/main/java/org/springframework/security/web/header/HeaderWriterFilter.java

@ -28,7 +28,7 @@ import org.springframework.util.Assert; @@ -28,7 +28,7 @@ import org.springframework.util.Assert;
import org.springframework.web.filter.OncePerRequestFilter;
/**
* Filter implementation to add headers to the current request. Can be useful to add
* Filter implementation to add headers to the current response. Can be useful to add
* certain headers which enable browser protection. Like X-Frame-Options, X-XSS-Protection
* and X-Content-Type-Options.
*
@ -40,7 +40,7 @@ public class HeaderWriterFilter extends OncePerRequestFilter { @@ -40,7 +40,7 @@ public class HeaderWriterFilter extends OncePerRequestFilter {
/**
* Collection of {@link HeaderWriter} instances to write out the headers to the
* response .
* response.
*/
private final List<HeaderWriter> headerWriters;

Loading…
Cancel
Save