diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2011-10-07 15:26:54 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2011-10-07 15:26:54 +0200 |
commit | 3ec78d459001df88e6df10b65dfc4998376c0c63 (patch) | |
tree | 357d4c2a89fb9343e280b30a497c6333f4fa8fe0 /sonar-check-api | |
parent | 5f948f97d8fdff638bc306e22813dd39b718d2a3 (diff) | |
download | sonarqube-3ec78d459001df88e6df10b65dfc4998376c0c63.tar.gz sonarqube-3ec78d459001df88e6df10b65dfc4998376c0c63.zip |
SONAR-2875 API: deprecate the interface org.sonar.squid.api.CodeCheck
Diffstat (limited to 'sonar-check-api')
-rw-r--r-- | sonar-check-api/src/main/java/org/sonar/check/Message.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sonar-check-api/src/main/java/org/sonar/check/Message.java b/sonar-check-api/src/main/java/org/sonar/check/Message.java index f0896fbdaf1..4efa8e23e30 100644 --- a/sonar-check-api/src/main/java/org/sonar/check/Message.java +++ b/sonar-check-api/src/main/java/org/sonar/check/Message.java @@ -17,7 +17,6 @@ * License along with Sonar; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02 */ - package org.sonar.check; import java.util.Locale; @@ -28,9 +27,6 @@ import java.util.Locale; @Deprecated public interface Message { - /** - * Return the checker which logged the message. The checker class must be annotated with <code>@Check</code> - */ Object getChecker(); Integer getLine(); |