move unused variable

This commit is contained in:
Shay Banon 2011-12-12 20:54:13 +02:00
parent 346d2fc28c
commit 0d195eb368
1 changed files with 1 additions and 4 deletions

View File

@ -56,8 +56,6 @@ public class RecoverySource extends AbstractComponent {
public static final String START_RECOVERY = "index/shard/recovery/startRecovery";
}
private final ThreadPool threadPool;
private final TransportService transportService;
private final IndicesService indicesService;
@ -66,10 +64,9 @@ public class RecoverySource extends AbstractComponent {
@Inject
public RecoverySource(Settings settings, ThreadPool threadPool, TransportService transportService, IndicesService indicesService,
public RecoverySource(Settings settings, TransportService transportService, IndicesService indicesService,
RecoverySettings recoverySettings) {
super(settings);
this.threadPool = threadPool;
this.transportService = transportService;
this.indicesService = indicesService;