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

laurent pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git


The following commit(s) were added to refs/heads/master by this push:
     new 8c0d792  Fix javadoc error
8c0d792 is described below

commit 8c0d792dd735eded2bb11be0c7c195b8f302ae90
Author: Laurent Goujon <[email protected]>
AuthorDate: Tue Jul 16 14:24:45 2019 -0700

    Fix javadoc error
    
    Fix a javadoc error in RelDataTypeFactory caused by a invalid signature
    and introduced by the previous patch
---
 core/src/main/java/org/apache/calcite/rel/type/RelDataTypeFactory.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/core/src/main/java/org/apache/calcite/rel/type/RelDataTypeFactory.java 
b/core/src/main/java/org/apache/calcite/rel/type/RelDataTypeFactory.java
index 7cc5f25..10057e4 100644
--- a/core/src/main/java/org/apache/calcite/rel/type/RelDataTypeFactory.java
+++ b/core/src/main/java/org/apache/calcite/rel/type/RelDataTypeFactory.java
@@ -285,7 +285,7 @@ public interface RelDataTypeFactory {
    * <p>Pre-condition: <code>createDecimalProduct(type1, type2) != null</code>
    *
    * @deprecated Use
-   * {@link RelDataTypeSystem#shouldUseDoubleMultiplication(RelDataType, 
RelDataType)}
+   * {@link 
RelDataTypeSystem#shouldUseDoubleMultiplication(RelDataTypeFactory, 
RelDataType, RelDataType)}
    */
   @Deprecated // to be removed before 2.0
   boolean useDoubleMultiplication(

Reply via email to