Skip to content

Commit

Permalink
code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
robotdan committed Aug 12, 2022
1 parent 4197c2e commit dc223dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/io/fusionauth/der/TagClass.java
Expand Up @@ -50,7 +50,7 @@ public enum TagClass {
*/
Private(0b11000000); // 192

public int value;
public final int value;

TagClass(int value) {
this.value = value;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/fusionauth/jwt/domain/Algorithm.java
Expand Up @@ -96,7 +96,7 @@ public enum Algorithm {
*/
none("None");

public String algorithm;
public final String algorithm;

Algorithm(String algorithm) {
this.algorithm = algorithm;
Expand Down

0 comments on commit dc223dd

Please sign in to comment.