Skip to content

Commit c48c3c8

Browse files
committed
Missing final
1 parent 9fcc703 commit c48c3c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/e_gineering/maven/gitflowhelper/GitBranchType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ public enum GitBranchType {
1313
OTHER,
1414
UNDEFINED;
1515

16-
static EnumSet<GitBranchType> VERSIONED_TYPES = EnumSet.of(GitBranchType.MASTER, GitBranchType.RELEASE, GitBranchType.HOTFIX);
16+
static final EnumSet<GitBranchType> VERSIONED_TYPES = EnumSet.of(GitBranchType.MASTER, GitBranchType.RELEASE, GitBranchType.HOTFIX);
1717
}

0 commit comments

Comments
 (0)