You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by da...@apache.org on 2011/11/05 20:06:21 UTC

svn commit: r1198017 - in /pig/trunk/src/org/apache/pig/builtin: BuildBloom.java BuildBloomBase.java

Author: daijy
Date: Sat Nov  5 19:06:21 2011
New Revision: 1198017

URL: http://svn.apache.org/viewvc?rev=1198017&view=rev
Log:
Fix javadoc warnings introduced by PIG-2328

Modified:
    pig/trunk/src/org/apache/pig/builtin/BuildBloom.java
    pig/trunk/src/org/apache/pig/builtin/BuildBloomBase.java

Modified: pig/trunk/src/org/apache/pig/builtin/BuildBloom.java
URL: http://svn.apache.org/viewvc/pig/trunk/src/org/apache/pig/builtin/BuildBloom.java?rev=1198017&r1=1198016&r2=1198017&view=diff
==============================================================================
--- pig/trunk/src/org/apache/pig/builtin/BuildBloom.java (original)
+++ pig/trunk/src/org/apache/pig/builtin/BuildBloom.java Sat Nov  5 19:06:21 2011
@@ -56,7 +56,7 @@ public class BuildBloom extends BuildBlo
     /** 
      * Build a bloom filter of fixed size and number of hash functions.
      * @param hashType type of the hashing function (see
-     * {@link org.apache.hadoop.util.bloom.Hash}).
+     * {@link org.apache.hadoop.util.hash.Hash}).
      * @param mode Will be ignored, though by convention it should be
      * "fixed" or "fixedsize"
      * @param vectorSize The vector size of this filter.
@@ -73,7 +73,7 @@ public class BuildBloom extends BuildBlo
      * Construct a Bloom filter based on expected number of elements and
      * desired accuracy.
      * @param hashType type of the hashing function (see
-     * {@link org.apache.hadoop.util.bloom.Hash}).
+     * {@link org.apache.hadoop.util.hash.Hash}).
      * @param numElements The number of distinct elements expected to be
      * placed in this filter.
      * @param desiredFalsePositive the acceptable rate of false positives.

Modified: pig/trunk/src/org/apache/pig/builtin/BuildBloomBase.java
URL: http://svn.apache.org/viewvc/pig/trunk/src/org/apache/pig/builtin/BuildBloomBase.java?rev=1198017&r1=1198016&r2=1198017&view=diff
==============================================================================
--- pig/trunk/src/org/apache/pig/builtin/BuildBloomBase.java (original)
+++ pig/trunk/src/org/apache/pig/builtin/BuildBloomBase.java Sat Nov  5 19:06:21 2011
@@ -49,7 +49,7 @@ public abstract class BuildBloomBase<T> 
 
     /** 
      * @param hashType type of the hashing function (see
-     * {@link org.apache.hadoop.util.bloom.Hash}).
+     * {@link org.apache.hadoop.util.hash.Hash}).
      * @param mode Will be ignored, though by convention it should be
      * "fixed" or "fixedsize"
      * @param vectorSize The vector size of <i>this</i> filter.
@@ -66,7 +66,7 @@ public abstract class BuildBloomBase<T> 
 
     /** 
      * @param hashType type of the hashing function (see
-     * {@link org.apache.hadoop.util.bloom.Hash}).
+     * {@link org.apache.hadoop.util.hash.Hash}).
      * @param numElements The number of distinct elements expected to be
      * placed in this filter.
      * @param desiredFalsePositive the acceptable rate of false positives.