Skip to content

Commit

Permalink
Add final to enum field
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed Dec 17, 2024
1 parent ed1eec4 commit c9b09ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/plugins/ec2/Tenancy.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public enum Tenancy {
Dedicated("dedicated"),
Host("host");

private String value;
private final String value;

private Tenancy(String value) {
this.value = value;
Expand Down

0 comments on commit c9b09ed

Please sign in to comment.