summaryrefslogtreecommitdiff
path: root/core/src/main/java/org/elasticsearch/action/support/tasks/BaseTasksRequest.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/java/org/elasticsearch/action/support/tasks/BaseTasksRequest.java')
-rw-r--r--core/src/main/java/org/elasticsearch/action/support/tasks/BaseTasksRequest.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/core/src/main/java/org/elasticsearch/action/support/tasks/BaseTasksRequest.java b/core/src/main/java/org/elasticsearch/action/support/tasks/BaseTasksRequest.java
index a1e485bb64..ea6698d439 100644
--- a/core/src/main/java/org/elasticsearch/action/support/tasks/BaseTasksRequest.java
+++ b/core/src/main/java/org/elasticsearch/action/support/tasks/BaseTasksRequest.java
@@ -65,15 +65,6 @@ public class BaseTasksRequest<T extends BaseTasksRequest> extends ActionRequest<
* Get information about tasks from nodes based on the nodes ids specified.
* If none are passed, information for all nodes will be returned.
*/
- public BaseTasksRequest(ActionRequest request, String... nodesIds) {
- super(request);
- this.nodesIds = nodesIds;
- }
-
- /**
- * Get information about tasks from nodes based on the nodes ids specified.
- * If none are passed, information for all nodes will be returned.
- */
public BaseTasksRequest(String... nodesIds) {
this.nodesIds = nodesIds;
}