]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-2875 Fix backward-compatibility
authorSimon Brandhof <simon.brandhof@gmail.com>
Tue, 11 Oct 2011 09:35:32 +0000 (11:35 +0200)
committerSimon Brandhof <simon.brandhof@gmail.com>
Tue, 11 Oct 2011 09:35:32 +0000 (11:35 +0200)
sonar-squid/src/main/java/org/sonar/squid/api/CheckMessage.java

index a1a22bbb7815a13b3bd1133557f5ed1f80201367..7fd41a638f31a7b15d36e59fc2021ca76a2fdc98 100644 (file)
@@ -41,6 +41,14 @@ public class CheckMessage implements Message {
     this.messageArguments = messageArguments;
   }
 
+  /**
+   * @deprecated replaced by the other constructor since 2.12. See SONAR-2875.
+   */
+  @Deprecated
+  public CheckMessage(CodeCheck checker, String message, Object... messageArguments) {
+    this((Object)checker, message, messageArguments);
+  }
+
   public void setSourceCode(SourceCode sourceCode) {
     this.sourceCode = sourceCode;
   }