Skip to content

Commit

Permalink
Fix Formatting
Browse files Browse the repository at this point in the history
Issue gh-11264
  • Loading branch information
rwinch committed May 17, 2022
1 parent e0a6a9e commit 5bf478e
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,11 @@ public class StrictHttpFirewall implements HttpFirewall {

private static final List<String> FORBIDDEN_NULL = Collections.unmodifiableList(Arrays.asList("\0", "%00"));

private static final List<String> FORBIDDEN_LF = Collections
.unmodifiableList(Arrays.asList("\r", "%0a", "%0A"));
private static final List<String> FORBIDDEN_LF = Collections.unmodifiableList(Arrays.asList("\r", "%0a", "%0A"));

private static final List<String> FORBIDDEN_CR = Collections
.unmodifiableList(Arrays.asList("\n", "%0d", "%0D"));
private static final List<String> FORBIDDEN_CR = Collections.unmodifiableList(Arrays.asList("\n", "%0d", "%0D"));

private static final List<String> FORBIDDEN_LINE_SEPARATOR = Collections
.unmodifiableList(Arrays.asList("\u2028"));
private static final List<String> FORBIDDEN_LINE_SEPARATOR = Collections.unmodifiableList(Arrays.asList("\u2028"));

private static final List<String> FORBIDDEN_PARAGRAPH_SEPARATOR = Collections
.unmodifiableList(Arrays.asList("\u2029"));
Expand Down

0 comments on commit 5bf478e

Please sign in to comment.