diff options
Diffstat (limited to 'sonar-batch')
-rw-r--r-- | sonar-batch/src/main/java/org/sonar/batch/scan/report/JsonReport.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-batch/src/main/java/org/sonar/batch/scan/report/JsonReport.java b/sonar-batch/src/main/java/org/sonar/batch/scan/report/JsonReport.java index 2d924d02043..c6f9bf8530a 100644 --- a/sonar-batch/src/main/java/org/sonar/batch/scan/report/JsonReport.java +++ b/sonar-batch/src/main/java/org/sonar/batch/scan/report/JsonReport.java @@ -216,7 +216,7 @@ public class JsonReport implements BatchComponent { } private String getRuleName(RuleKey ruleKey) { - return ruleI18nManager.getName(ruleKey.repository(), ruleKey.rule(), Locale.getDefault()); + return ruleI18nManager.getName(ruleKey.repository(), ruleKey.rule()); } @VisibleForTesting |