From 621133d6f21c3f75ce310769404002ab097aa76e Mon Sep 17 00:00:00 2001 From: fjy Date: Thu, 7 Nov 2013 16:53:34 -0800 Subject: [PATCH] removing dead code --- .../config/ChatHandlerProviderConfig.java | 37 ------------------- 1 file changed, 37 deletions(-) delete mode 100644 indexing-service/src/main/java/io/druid/indexing/worker/config/ChatHandlerProviderConfig.java diff --git a/indexing-service/src/main/java/io/druid/indexing/worker/config/ChatHandlerProviderConfig.java b/indexing-service/src/main/java/io/druid/indexing/worker/config/ChatHandlerProviderConfig.java deleted file mode 100644 index d7b5154208a..00000000000 --- a/indexing-service/src/main/java/io/druid/indexing/worker/config/ChatHandlerProviderConfig.java +++ /dev/null @@ -1,37 +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.worker.config; - -import org.skife.config.Config; - -public abstract class ChatHandlerProviderConfig -{ - @Config("druid.indexer.chathandler.publishDiscovery") - public boolean isPublishDiscovery() - { - return false; - } - - @Config("druid.host") - public abstract String getHost(); - - @Config("druid.port") - public abstract int getPort(); -}