Skip to content

Commit bb1b9d9

Browse files
committed
Polish Javadoc and Whitespacing
Issue: gh-6453
1 parent 718641a commit bb1b9d9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,16 @@ public class HeaderWriterFilter extends OncePerRequestFilter {
4646

4747

4848
/**
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}
5151
*/
5252
private final HeaderWriter headerWriter;
5353

5454
/**
5555
* Creates a new instance.
5656
*
5757
* @param headerWriters the {@link HeaderWriter} instances to write out headers to the
58-
* {@link HttpServletResponse}.
58+
* {@link HttpServletResponse}.
5959
*/
6060
public HeaderWriterFilter(List<HeaderWriter> headerWriters) {
6161
Assert.notEmpty(headerWriters, "headerWriters cannot be null or empty");
@@ -64,7 +64,7 @@ public HeaderWriterFilter(List<HeaderWriter> headerWriters) {
6464

6565
@Override
6666
protected void doFilterInternal(HttpServletRequest request,
67-
HttpServletResponse response, FilterChain filterChain)
67+
HttpServletResponse response, FilterChain filterChain)
6868
throws ServletException, IOException {
6969

7070
HeaderWriterResponse headerWriterResponse = new HeaderWriterResponse(request,

0 commit comments

Comments
 (0)