This is an automated email from the ASF dual-hosted git repository. elharo pushed a commit to branch enum in repository https://gitbox.apache.org/repos/asf/maven-changes-plugin.git
commit 0a72045f9bdc542ad9bfdccd8c437eebff9dc99f Author: Elliotte Rusty Harold <elh...@ibiblio.org> AuthorDate: Sat Nov 23 13:00:45 2024 -0500 enum fields should be final --- src/main/java/org/apache/maven/plugins/changes/IssueType.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/maven/plugins/changes/IssueType.java b/src/main/java/org/apache/maven/plugins/changes/IssueType.java index 800f86e..d9c72a7 100644 --- a/src/main/java/org/apache/maven/plugins/changes/IssueType.java +++ b/src/main/java/org/apache/maven/plugins/changes/IssueType.java @@ -29,7 +29,7 @@ public enum IssueType { UPDATE("update"), REMOVE("remove"); - private String configurationKey; + private final String configurationKey; IssueType(String configurationKey) { this.configurationKey = configurationKey;