diff options
author | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-03-20 11:38:51 +0100 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-03-20 11:44:08 +0100 |
commit | 7fe19bb2a16adc26020d75d82d215278ecc44974 (patch) | |
tree | b293d94390ca05356e9dce8c9382bf9a73d34025 /sonar-plugin-api | |
parent | 5b16186c846141eb9a968e38c861dd3652029884 (diff) | |
download | sonarqube-7fe19bb2a16adc26020d75d82d215278ecc44974.tar.gz sonarqube-7fe19bb2a16adc26020d75d82d215278ecc44974.zip |
fix quality flaws (2nd edition)
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/utils/Durations.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/utils/Durations.java b/sonar-plugin-api/src/main/java/org/sonar/api/utils/Durations.java index cf85aa07967..a181b788b75 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/utils/Durations.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/utils/Durations.java @@ -82,9 +82,7 @@ public class Durations implements BatchComponent, ServerComponent { * <br> * Example : format(Locale.FRENCH, Duration.encode("9d 10h"), DurationFormat.SHORT) -> 10j 2h (if sonar.technicalDebt.hoursInDay property is set to 8) * - * @deprecated since 5.2 replaced by format(java.util.Locale, org.sonar.api.utils.Duration) */ - @Deprecated public String format(Locale locale, Duration duration, DurationFormat format) { return format(locale, duration); } |