Return-Path: X-Original-To: apmail-cassandra-commits-archive@www.apache.org Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0DD23117EB for ; Wed, 6 Aug 2014 16:16:33 +0000 (UTC) Received: (qmail 70860 invoked by uid 500); 6 Aug 2014 16:16:32 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 70824 invoked by uid 500); 6 Aug 2014 16:16:32 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 70804 invoked by uid 99); 6 Aug 2014 16:16:32 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Aug 2014 16:16:32 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 5E3B89243B9; Wed, 6 Aug 2014 16:16:32 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: brandonwilliams@apache.org To: commits@cassandra.apache.org Date: Wed, 06 Aug 2014 16:16:32 -0000 Message-Id: <594f271b2e2445fb9801d78abc73c83a@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/3] git commit: Remove ICPRR too Repository: cassandra Updated Branches: refs/heads/cassandra-2.1 8822c96d3 -> b4aa75012 refs/heads/trunk 487de3daf -> 152806414 Remove ICPRR too Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/b4aa7501 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/b4aa7501 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/b4aa7501 Branch: refs/heads/cassandra-2.1 Commit: b4aa75012276c4d78253bf95a4fc6f0c5f342c04 Parents: 8822c96 Author: Brandon Williams Authored: Wed Aug 6 11:16:05 2014 -0500 Committer: Brandon Williams Committed: Wed Aug 6 11:16:05 2014 -0500 ---------------------------------------------------------------------- .../cql3/IterableCqlPagingRecordReader.java | 73 -------------------- 1 file changed, 73 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/b4aa7501/src/java/org/apache/cassandra/hadoop/cql3/IterableCqlPagingRecordReader.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/hadoop/cql3/IterableCqlPagingRecordReader.java b/src/java/org/apache/cassandra/hadoop/cql3/IterableCqlPagingRecordReader.java deleted file mode 100644 index d7348b0..0000000 --- a/src/java/org/apache/cassandra/hadoop/cql3/IterableCqlPagingRecordReader.java +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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 org.apache.cassandra.hadoop.cql3; - -import java.io.Closeable; -import java.io.IOException; -import java.nio.ByteBuffer; -import java.util.Iterator; -import java.util.Map; - -import org.apache.cassandra.utils.Pair; - -/** - * Implements an iterable-friendly {@link CqlPagingRecordReader}. - */ -public class IterableCqlPagingRecordReader extends CqlPagingRecordReader - implements Iterable, Map>>, Closeable -{ - public Iterator, Map>> iterator() - { - return new Iterator, Map>>() - { - public boolean hasNext() - { - return rowIterator.hasNext(); - } - - public Pair, Map> next() - { - return rowIterator.next(); - } - - public void remove() - { - throw new UnsupportedOperationException("Cannot remove an element on this iterator!"); - - } - }; - } - - /** - * @throws NotImplementedException Always throws this exception, this operation does not make sense in this implementation. - */ - @Override - public boolean nextKeyValue() throws IOException - { - throw new UnsupportedOperationException("Calling method nextKeyValue() does not make sense in this implementation"); - } - - /** - * @throws NotImplementedException Always throws this exception, this operation does not make sense in this implementation. - */ - @Override - public boolean next(Map keys, Map value) throws IOException - { - throw new UnsupportedOperationException("Calling method next() does not make sense in this implementation"); - } -}