remove unused class

This commit is contained in:
fjy 2014-01-20 16:45:54 -08:00
parent 1ecc9d0f98
commit 1d81ad2946
1 changed files with 0 additions and 57 deletions

View File

@ -1,57 +0,0 @@
/*
* Druid - a distributed column store.
* Copyright (C) 2012, 2013 Metamarkets Group Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package io.druid.indexing.overlord.scaling;
import java.util.List;
/**
*/
public class TestAutoScalingStrategy<T> implements AutoScalingStrategy
{
@Override
public AutoScalingData provision()
{
return null;
}
@Override
public AutoScalingData terminate(List<String> ips)
{
return null;
}
@Override
public AutoScalingData terminateWithIds(List<String> ids)
{
return null;
}
@Override
public List<String> ipToIdLookup(List<String> ips)
{
return null;
}
@Override
public List<String> idToIpLookup(List<String> nodeIds)
{
return null;
}
}