]> source.dussan.org Git - sonarqube.git/commitdiff
Fix bad commit
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 30 Sep 2015 13:50:39 +0000 (15:50 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 30 Sep 2015 13:50:39 +0000 (15:50 +0200)
server/sonar-server/src/main/java/org/sonar/server/computation/queue/CeTask.java

index 0d847f20e7e10269d9acd23360b07d4edc71168f..7867c83aea9838d63c9c764f0dac06e926b99e98 100644 (file)
@@ -98,13 +98,7 @@ public class CeTask {
 
   @Override
   public int hashCode() {
-    int result = type.hashCode();
-    result = 31 * result + uuid.hashCode();
-    result = 31 * result + componentUuid.hashCode();
-    result = 31 * result + (componentKey != null ? componentKey.hashCode() : 0);
-    result = 31 * result + (componentName != null ? componentName.hashCode() : 0);
-    result = 31 * result + (submitterLogin != null ? submitterLogin.hashCode() : 0);
-    return result;
+    return uuid.hashCode();
   }
 
   public static final class Builder {