Skip to content

Commit

Permalink
refactor: reorder modifiers to comply with the
Browse files Browse the repository at this point in the history
Java Language Specification
  • Loading branch information
hamirmahal committed Feb 18, 2024
1 parent 6e77fcc commit 2d8ff36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/src/main/java/edu/sjsu/moth/util/HttpSignature.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ private HttpSignature() {
}

public static final String REQUEST_TARGET = "(request-target)";
static public final Pattern HTTP_HEADER_FIELDS_PATTERN = Pattern.compile(
public static final Pattern HTTP_HEADER_FIELDS_PATTERN = Pattern.compile(
"(?<key>\\p{Alnum}+)=\"(?<value>([^\"])*)\"");

public static Signature newSigner() {
Expand Down

0 comments on commit 2d8ff36

Please sign in to comment.