diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-11-29 10:58:03 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-11-29 10:58:45 +0100 |
commit | 9ead868b4282004368bc68b3eebde1899d84faef (patch) | |
tree | 413dc4d2f8594737b4731e9b0598d8d4faa72aa7 /sonar-plugin-api | |
parent | 8f16fe577c23ae27cf43a3e0c02e96df4eac4354 (diff) | |
download | sonarqube-9ead868b4282004368bc68b3eebde1899d84faef.tar.gz sonarqube-9ead868b4282004368bc68b3eebde1899d84faef.zip |
SONAR-4875 Remove the property 'sonar.violationLocale' and so the ability to chose which language should be used to log issue message
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java b/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java index a9e07108eeb..c06be276d1d 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java @@ -181,7 +181,13 @@ public interface CoreProperties { String REUSE_RULES_CONFIGURATION_PROPERTY = "sonar.reuseExistingRulesConfiguration"; /* Sonar Core */ + + /** + * @deprecated since 4.1. See http://jira.codehaus.org/browse/SONAR-4875 + */ + @Deprecated String CORE_VIOLATION_LOCALE_PROPERTY = "sonar.violationLocale"; + String CORE_VIOLATION_LOCALE_DEFAULT_VALUE = "en"; String CORE_IMPORT_SOURCES_PROPERTY = "sonar.importSources"; boolean CORE_IMPORT_SOURCES_DEFAULT_VALUE = true; |