File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
web/src/main/java/org/springframework/security/web/firewall Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -107,14 +107,11 @@ public class StrictHttpFirewall implements HttpFirewall {
107
107
108
108
private static final List <String > FORBIDDEN_NULL = Collections .unmodifiableList (Arrays .asList ("\0 " , "%00" ));
109
109
110
- private static final List <String > FORBIDDEN_LF = Collections
111
- .unmodifiableList (Arrays .asList ("\r " , "%0a" , "%0A" ));
110
+ private static final List <String > FORBIDDEN_LF = Collections .unmodifiableList (Arrays .asList ("\r " , "%0a" , "%0A" ));
112
111
113
- private static final List <String > FORBIDDEN_CR = Collections
114
- .unmodifiableList (Arrays .asList ("\n " , "%0d" , "%0D" ));
112
+ private static final List <String > FORBIDDEN_CR = Collections .unmodifiableList (Arrays .asList ("\n " , "%0d" , "%0D" ));
115
113
116
- private static final List <String > FORBIDDEN_LINE_SEPARATOR = Collections
117
- .unmodifiableList (Arrays .asList ("\u2028 " ));
114
+ private static final List <String > FORBIDDEN_LINE_SEPARATOR = Collections .unmodifiableList (Arrays .asList ("\u2028 " ));
118
115
119
116
private static final List <String > FORBIDDEN_PARAGRAPH_SEPARATOR = Collections
120
117
.unmodifiableList (Arrays .asList ("\u2029 " ));
You can’t perform that action at this time.
0 commit comments