This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch branch-1.7
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/branch-1.7 by this push:
     new 440802d  ORC-954: Fix Javadoc generation failure (#867)
440802d is described below

commit 440802db23a36cc3c9fffc4f394ea036c999884c
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Sun Aug 15 16:58:14 2021 -0700

    ORC-954: Fix Javadoc generation failure (#867)
    
    This PR aims to recover `Javadoc` generation failure.
    
    This is a blocker for new release.
    
    Manually.
    ```
    $ cd java
    $ mvn install -DskipTests
    $ mvn javadoc:javadoc
    ```
    
    (cherry picked from commit 196a1649416af22d655288cc5765c09766676cca)
    Signed-off-by: Dongjoon Hyun <[email protected]>
---
 java/core/src/java/org/apache/orc/util/CuckooSetBytes.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java/core/src/java/org/apache/orc/util/CuckooSetBytes.java 
b/java/core/src/java/org/apache/orc/util/CuckooSetBytes.java
index b60956d..c213d29 100644
--- a/java/core/src/java/org/apache/orc/util/CuckooSetBytes.java
+++ b/java/core/src/java/org/apache/orc/util/CuckooSetBytes.java
@@ -26,7 +26,7 @@ import java.util.Random;
  * A high-performance set implementation used to support fast set membership 
testing,
  * using Cuckoo hashing. This is used to support fast tests of the form
  *
- *       column IN ( <list-of-values )
+ *       column IN ( list-of-values )
  *
  * For details on the algorithm, see R. Pagh and F. F. Rodler, "Cuckoo 
Hashing,"
  * Elsevier Science preprint, Dec. 2003. 
http://www.itu.dk/people/pagh/papers/cuckoo-jour.pdf.

Reply via email to