diff options
author | Stephane Gamard <stephane.gamard@searchbox.com> | 2014-07-01 18:49:20 +0200 |
---|---|---|
committer | Stephane Gamard <stephane.gamard@searchbox.com> | 2014-07-01 18:55:12 +0200 |
commit | c6c7ec6ddc217d0c7577bcfcecdbf9d85dd86fd3 (patch) | |
tree | c8c836c22032ae9734563b0f6017ecf876f5081b | |
parent | 7884f1112e53b07ecd7616ee206b9fb143d6f989 (diff) | |
download | sonarqube-c6c7ec6ddc217d0c7577bcfcecdbf9d85dd86fd3.tar.gz sonarqube-c6c7ec6ddc217d0c7577bcfcecdbf9d85dd86fd3.zip |
fix quality flaws (Unused ctor)
-rw-r--r-- | sonar-server/src/main/java/org/sonar/server/search/action/IndexAction.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sonar-server/src/main/java/org/sonar/server/search/action/IndexAction.java b/sonar-server/src/main/java/org/sonar/server/search/action/IndexAction.java index e8164cb049b..c2001b4257c 100644 --- a/sonar-server/src/main/java/org/sonar/server/search/action/IndexAction.java +++ b/sonar-server/src/main/java/org/sonar/server/search/action/IndexAction.java @@ -35,10 +35,6 @@ public abstract class IndexAction extends QueueAction { protected Method method; protected Index index; - public IndexAction(String indexType) { - this(indexType, null); - } - public IndexAction(String indexType, Method method) { super(); this.indexType = indexType; |