This is an automated email from the ASF dual-hosted git repository.

elharo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-changes-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 1fb59d9  enum fields should be final (#61)
1fb59d9 is described below

commit 1fb59d99fdcf403d4ed3bdff35450f56dab9c6ac
Author: Elliotte Rusty Harold <elh...@users.noreply.github.com>
AuthorDate: Sat Nov 23 19:55:25 2024 +0000

    enum fields should be final (#61)
---
 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;

Reply via email to