]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-2404 Fix API small issue
authorFabrice Bellingard <bellingard@gmail.com>
Tue, 31 May 2011 15:35:48 +0000 (17:35 +0200)
committerFabrice Bellingard <bellingard@gmail.com>
Tue, 31 May 2011 15:48:32 +0000 (17:48 +0200)
sonar-ws-client/src/main/java/org/sonar/wsclient/services/ReviewQuery.java

index 800bc048e04594e92c2ef8e6976d2de696a6fa8a..d1858cd242f2908b868408a84d127ffd7cb8b6df 100644 (file)
@@ -230,8 +230,9 @@ public class ReviewQuery extends Query<Review> {
    * @param falsePositives
    *          the false_positives
    */
-  public void setFalsePositives(String falsePositives) {
+  public ReviewQuery setFalsePositives(String falsePositives) {
     this.falsePositives = falsePositives;
+    return this;
   }
 
   @Override