File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
web/src/main/java/org/springframework/security/web/header Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -46,16 +46,16 @@ public class HeaderWriterFilter extends OncePerRequestFilter {
46
46
47
47
48
48
/**
49
- * Composite {@link CompositeHeaderWriter} containing Collection of {@link HeaderWriter} instances to write out the headers to the
50
- * response.
49
+ * The {@link HeaderWriter} to write headers to the response.
50
+ * {@see CompositeHeaderWriter}
51
51
*/
52
52
private final HeaderWriter headerWriter ;
53
53
54
54
/**
55
55
* Creates a new instance.
56
56
*
57
57
* @param headerWriters the {@link HeaderWriter} instances to write out headers to the
58
- * {@link HttpServletResponse}.
58
+ * {@link HttpServletResponse}.
59
59
*/
60
60
public HeaderWriterFilter (List <HeaderWriter > headerWriters ) {
61
61
Assert .notEmpty (headerWriters , "headerWriters cannot be null or empty" );
@@ -64,7 +64,7 @@ public HeaderWriterFilter(List<HeaderWriter> headerWriters) {
64
64
65
65
@ Override
66
66
protected void doFilterInternal (HttpServletRequest request ,
67
- HttpServletResponse response , FilterChain filterChain )
67
+ HttpServletResponse response , FilterChain filterChain )
68
68
throws ServletException , IOException {
69
69
70
70
HeaderWriterResponse headerWriterResponse = new HeaderWriterResponse (request ,
You can’t perform that action at this time.
0 commit comments