From e575ef2b20e14432e26b166b47af184dcbde795d Mon Sep 17 00:00:00 2001 From: Gian Merlino Date: Fri, 24 Jul 2015 16:00:34 -0700 Subject: [PATCH] Remove unused Indexer interface. --- .../io/druid/segment/realtime/Indexer.java | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100644 server/src/main/java/io/druid/segment/realtime/Indexer.java diff --git a/server/src/main/java/io/druid/segment/realtime/Indexer.java b/server/src/main/java/io/druid/segment/realtime/Indexer.java deleted file mode 100644 index c4fa46213e9..00000000000 --- a/server/src/main/java/io/druid/segment/realtime/Indexer.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Druid - a distributed column store. - * Copyright 2012 - 2015 Metamarkets Group Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package io.druid.segment.realtime; - -import io.druid.data.input.InputRow; - -/** - */ -public interface Indexer -{ - public int add(InputRow row); -}