Author: ctubbsii
Date: Thu Jan 24 20:58:22 2013
New Revision: 1438191
URL: http://svn.apache.org/viewvc?rev=1438191&view=rev
Log:
ACCUMULO-971 Fix some malformed javadocs
Modified:
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/file/BloomFilterLayer.java
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/BCFile.java
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/TFile.java
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/iterators/user/TransformingIterator.java
accumulo/trunk/server/src/main/java/org/apache/accumulo/server/tabletserver/FileManager.java
Modified:
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/file/BloomFilterLayer.java
URL:
http://svn.apache.org/viewvc/accumulo/trunk/core/src/main/java/org/apache/accumulo/core/file/BloomFilterLayer.java?rev=1438191&r1=1438190&r2=1438191&view=diff
==============================================================================
---
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/file/BloomFilterLayer.java
(original)
+++
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/file/BloomFilterLayer.java
Thu Jan 24 20:58:22 2013
@@ -280,11 +280,11 @@ public class BloomFilterLayer {
}
/**
- * Checks if this MyMapFile has the indicated key. The membership test is
performed using a Bloom filter, so the result has always non-zero probability of
+ * Checks if this {@link RFile} contains keys from this range. The
membership test is performed using a Bloom filter, so the result has always
non-zero probability of
* false positives.
*
- * @param key
- * key to check
+ * @param range
+ * range of keys to check
* @return false iff key doesn't exist, true if key probably exists.
* @throws IOException
*/
Modified:
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/BCFile.java
URL:
http://svn.apache.org/viewvc/accumulo/trunk/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/BCFile.java?rev=1438191&r1=1438190&r2=1438191&view=diff
==============================================================================
---
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/BCFile.java
(original)
+++
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/BCFile.java
Thu Jan 24 20:58:22 2013
@@ -159,7 +159,6 @@ public final class BCFile {
/**
* Current size of compressed data.
*
- * @return
* @throws IOException
*/
long getCompressedSize() throws IOException {
Modified:
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/TFile.java
URL:
http://svn.apache.org/viewvc/accumulo/trunk/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/TFile.java?rev=1438191&r1=1438190&r2=1438191&view=diff
==============================================================================
---
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/TFile.java
(original)
+++
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/file/rfile/bcfile/TFile.java
Thu Jan 24 20:58:22 2013
@@ -877,7 +877,6 @@ public class TFile {
* the input key
* @param greater
* boolean flag
- * @return
* @throws IOException
*/
Location getBlockContainsKey(RawComparable key, boolean greater) throws
IOException {
Modified:
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/iterators/user/TransformingIterator.java
URL:
http://svn.apache.org/viewvc/accumulo/trunk/core/src/main/java/org/apache/accumulo/core/iterators/user/TransformingIterator.java?rev=1438191&r1=1438190&r2=1438191&view=diff
==============================================================================
---
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/iterators/user/TransformingIterator.java
(original)
+++
accumulo/trunk/core/src/main/java/org/apache/accumulo/core/iterators/user/TransformingIterator.java
Thu Jan 24 20:58:22 2013
@@ -607,7 +607,7 @@ abstract public class TransformingIterat
/**
* Indicates the prefix of keys that will be transformed by this iterator.
In other words, this is the part of the key that will <i>not</i> be transformed
by
- * this iterator. For example, if this method returns ROW_COLFAM, then
{@link #transformKey(Key)} may be changing the column qualifier, column
visibility, or
+ * this iterator. For example, if this method returns ROW_COLFAM, then
{@link #transformKeys()} may be changing the column qualifier, column
visibility, or
* timestamp, but it won't be changing the row or column family.
*
* @return the part of the key this iterator is not transforming
Modified:
accumulo/trunk/server/src/main/java/org/apache/accumulo/server/tabletserver/FileManager.java
URL:
http://svn.apache.org/viewvc/accumulo/trunk/server/src/main/java/org/apache/accumulo/server/tabletserver/FileManager.java?rev=1438191&r1=1438190&r2=1438191&view=diff
==============================================================================
---
accumulo/trunk/server/src/main/java/org/apache/accumulo/server/tabletserver/FileManager.java
(original)
+++
accumulo/trunk/server/src/main/java/org/apache/accumulo/server/tabletserver/FileManager.java
Thu Jan 24 20:58:22 2013
@@ -26,7 +26,6 @@ import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
-import java.util.TimerTask;
import java.util.concurrent.Semaphore;
import org.apache.accumulo.core.conf.Property;
@@ -154,10 +153,6 @@ public class FileManager {
/**
*
- * @param instance
- * @param conf
- * @param fs
- * @param maxOpen
* @param dataCache
* : underlying file can and should be able to handle a null cache
* @param indexCache