]> source.dussan.org Git - sonarqube.git/commitdiff
Fix binary compatibility of ResourceModel#setCopyResourceId(Integer)
authorSimon Brandhof <simon.brandhof@gmail.com>
Thu, 16 Feb 2012 07:19:24 +0000 (08:19 +0100)
committerSimon Brandhof <simon.brandhof@gmail.com>
Thu, 16 Feb 2012 07:19:55 +0000 (08:19 +0100)
sonar-plugin-api/src/main/java/org/sonar/api/database/model/ResourceModel.java

index 86bd05ef823dd95696ebef6484c6e7d11b62b18d..d4ff46a2f1ab56719ab45df685964d5d6e39268a 100644 (file)
@@ -209,9 +209,8 @@ public class ResourceModel extends BaseIdentifiable implements Cloneable {
     return copyResourceId;
   }
 
-  public ResourceModel setCopyResourceId(Integer i) {
+  public void setCopyResourceId(Integer i) {
     this.copyResourceId = i;
-    return this;
   }
 
   /**