Skip to content

Commit

Permalink
Make the Cookie's SameSite directive property string value final
Browse files Browse the repository at this point in the history
  • Loading branch information
cleankod committed Apr 10, 2020
1 parent 95275bd commit 78952e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public enum SameSite {
*/
NONE("None");

private String value;
private final String value;

SameSite(final String value) {
this.value = value;
Expand Down

0 comments on commit 78952e9

Please sign in to comment.