diff options
author | Jean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com> | 2013-04-12 11:30:52 +0200 |
---|---|---|
committer | Jean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com> | 2013-04-12 11:30:52 +0200 |
commit | 33de62493fea3eb7517944ce50b760baba9be2cf (patch) | |
tree | c3cd2044f99e3664915bd830c161bb8d0257ed11 /sonar-plugin-api | |
parent | 9f42fb95a0d3ff069f72bdd94de1ab1c2e9d771f (diff) | |
download | sonarqube-33de62493fea3eb7517944ce50b760baba9be2cf.tar.gz sonarqube-33de62493fea3eb7517944ce50b760baba9be2cf.zip |
SONAR-3893 Removed deprecated Highlightable API
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/scan/source/Highlightable.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/scan/source/Highlightable.java b/sonar-plugin-api/src/main/java/org/sonar/api/scan/source/Highlightable.java index ea0c60dba8e..4e3c43304cf 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/scan/source/Highlightable.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/scan/source/Highlightable.java @@ -34,10 +34,4 @@ public interface Highlightable extends Perspective { } HighlightingBuilder newHighlighting(); - - /* - * @deprecated in favor of the provided builder-based api - */ - @Deprecated - void highlightText(int startOffset, int endOffset, String typeOfText); } |