You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2022/03/16 15:45:38 UTC

[iceberg] branch master updated: Avro: Fix Javadoc links (#4339)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2434de5  Avro: Fix Javadoc links (#4339)
2434de5 is described below

commit 2434de5c9a8607c02743873f32657165221ba112
Author: felixYyu <fe...@live.cn>
AuthorDate: Wed Mar 16 23:45:20 2022 +0800

    Avro: Fix Javadoc links (#4339)
---
 core/src/main/java/org/apache/iceberg/avro/AvroSchemaUtil.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/core/src/main/java/org/apache/iceberg/avro/AvroSchemaUtil.java b/core/src/main/java/org/apache/iceberg/avro/AvroSchemaUtil.java
index b6b4fff..6f3b8e8 100644
--- a/core/src/main/java/org/apache/iceberg/avro/AvroSchemaUtil.java
+++ b/core/src/main/java/org/apache/iceberg/avro/AvroSchemaUtil.java
@@ -95,10 +95,10 @@ public class AvroSchemaUtil {
    * <p>
    * To have an ID for a node:
    * <ul>
-   *   <li>a field node under struct (record) schema should have {@link FIELD_ID_PROP} property
-   *   <li>an element node under list (array) schema should have {@link ELEMENT_ID_PROP} property
-   *   <li>a pair of key and value node under map schema should have {@link KEY_ID_PROP} and
-   *   {@link VALUE_ID_PROP} respectively
+   *   <li>a field node under struct (record) schema should have {@link #FIELD_ID_PROP} property
+   *   <li>an element node under list (array) schema should have {@link #ELEMENT_ID_PROP} property
+   *   <li>a pair of key and value node under map schema should have {@link #KEY_ID_PROP} and
+   *   {@link #VALUE_ID_PROP} respectively
    *   <li>a primitive node is not assigned any ID properties
    * </ul>
    * <p>