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

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new a4a7aad69 [minor] Reduce warning logs (#1049)
a4a7aad69 is described below

commit a4a7aad691766bda319fbdda68554648b6268c18
Author: zhang chaoming <[email protected]>
AuthorDate: Thu May 4 09:56:13 2023 +0800

    [minor] Reduce warning logs (#1049)
---
 .../src/main/java/org/apache/paimon/data/JoinedRow.java      | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/paimon-common/src/main/java/org/apache/paimon/data/JoinedRow.java 
b/paimon-common/src/main/java/org/apache/paimon/data/JoinedRow.java
index 736745131..e9126cd7c 100644
--- a/paimon-common/src/main/java/org/apache/paimon/data/JoinedRow.java
+++ b/paimon-common/src/main/java/org/apache/paimon/data/JoinedRow.java
@@ -48,22 +48,26 @@ public class JoinedRow implements InternalRow {
     public JoinedRow() {}
 
     /**
-     * Creates a new {@link JoinedRow} of kind {@link RowKind#INSERT} backed 
by {@param row1} and
-     * {@param row2}.
+     * Creates a new {@link JoinedRow} of kind {@link RowKind#INSERT} backed 
by row1 and row2.
      *
      * <p>Note that it must be ensured that the backing rows are set to 
non-{@code null} values
      * before accessing data from this {@link JoinedRow}.
+     *
+     * @param row1 the first row
+     * @param row2 the second row
      */
     public JoinedRow(@Nullable InternalRow row1, @Nullable InternalRow row2) {
         this(RowKind.INSERT, row1, row2);
     }
 
     /**
-     * Creates a new {@link JoinedRow} of kind {@param rowKind} backed by 
{@param row1} and {@param
-     * row2}.
+     * Creates a new {@link JoinedRow} of kind {@link RowKind#INSERT} backed 
by row1 and row2.
      *
      * <p>Note that it must be ensured that the backing rows are set to 
non-{@code null} values
      * before accessing data from this {@link JoinedRow}.
+     *
+     * @param row1 the first row
+     * @param row2 the second row
      */
     public JoinedRow(RowKind rowKind, @Nullable InternalRow row1, @Nullable 
InternalRow row2) {
         this.rowKind = rowKind;

Reply via email to