diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2019-05-21 17:50:50 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-05-22 20:21:15 +0200 |
commit | c7c20741bd5055beece091e981789aea1a15f401 (patch) | |
tree | 4d3add13e738c8f2e3ce2a90af9889ee26094bc6 /sonar-plugin-api/src/main | |
parent | 09ab6b574f976764a312d685b173f1ac47b35aa0 (diff) | |
download | sonarqube-c7c20741bd5055beece091e981789aea1a15f401.tar.gz sonarqube-c7c20741bd5055beece091e981789aea1a15f401.zip |
SONAR-12026 Update status names, transition names and description
* Replace INREVIEW and TOREVIEW to IN_REVIEW and TO_REVIEW
* Update transition names and descriptions
Diffstat (limited to 'sonar-plugin-api/src/main')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/issue/Issue.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/issue/Issue.java b/sonar-plugin-api/src/main/java/org/sonar/api/issue/Issue.java index 2f0f25aec86..f409969aab8 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/issue/Issue.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/issue/Issue.java @@ -79,12 +79,12 @@ public interface Issue extends Serializable { /** * @since 7.8 */ - String STATUS_TO_REVIEW = "TOREVIEW"; + String STATUS_TO_REVIEW = "TO_REVIEW"; /** * @since 7.8 */ - String STATUS_IN_REVIEW = "INREVIEW"; + String STATUS_IN_REVIEW = "IN_REVIEW"; /** * @since 7.8 |