You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by br...@apache.org on 2014/08/06 18:16:33 UTC

[2/3] git commit: Remove ICPRR too

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/trunk
Commit: b4aa75012276c4d78253bf95a4fc6f0c5f342c04
Parents: 8822c96
Author: Brandon Williams <br...@apache.org>
Authored: Wed Aug 6 11:16:05 2014 -0500
Committer: Brandon Williams <br...@apache.org>
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<Pair<Map<String, ByteBuffer>, Map<String, ByteBuffer>>>, Closeable
-{
-    public Iterator<Pair<Map<String, ByteBuffer>, Map<String, ByteBuffer>>> iterator()
-    {
-        return new Iterator<Pair<Map<String, ByteBuffer>, Map<String, ByteBuffer>>>()
-        {
-            public boolean hasNext()
-            {
-                return rowIterator.hasNext();
-            }
-
-            public Pair<Map<String, ByteBuffer>, Map<String, ByteBuffer>> 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<String, ByteBuffer> keys, Map<String, ByteBuffer> value) throws IOException
-    {
-        throw new UnsupportedOperationException("Calling method next() does not make sense in this implementation");
-    }
-}