From 1d81ad2946418c5c3ce78c0042e887bb75775cdf Mon Sep 17 00:00:00 2001 From: fjy Date: Mon, 20 Jan 2014 16:45:54 -0800 Subject: [PATCH] remove unused class --- .../scaling/TestAutoScalingStrategy.java | 57 ------------------- 1 file changed, 57 deletions(-) delete mode 100644 indexing-service/src/test/java/io/druid/indexing/overlord/scaling/TestAutoScalingStrategy.java diff --git a/indexing-service/src/test/java/io/druid/indexing/overlord/scaling/TestAutoScalingStrategy.java b/indexing-service/src/test/java/io/druid/indexing/overlord/scaling/TestAutoScalingStrategy.java deleted file mode 100644 index d2378c38823..00000000000 --- a/indexing-service/src/test/java/io/druid/indexing/overlord/scaling/TestAutoScalingStrategy.java +++ /dev/null @@ -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 implements AutoScalingStrategy -{ - @Override - public AutoScalingData provision() - { - return null; - } - - @Override - public AutoScalingData terminate(List ips) - { - return null; - } - - @Override - public AutoScalingData terminateWithIds(List ids) - { - return null; - } - - @Override - public List ipToIdLookup(List ips) - { - return null; - } - - @Override - public List idToIpLookup(List nodeIds) - { - return null; - } -}