This is an automated email from the ASF dual-hosted git repository.
jmclean pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new b1d46adcef [#7208] improvement(javadoc): fix java doc @link reference
issue (#7234)
b1d46adcef is described below
commit b1d46adcef15e2e3a323dc4fe70a04c006bae437
Author: Kyle Lin <[email protected]>
AuthorDate: Mon May 26 08:46:33 2025 +0800
[#7208] improvement(javadoc): fix java doc @link reference issue (#7234)
### What changes were proposed in this pull request?
Fix the Javadoc @link reference in
`lineage/src/main/java/org/apache/gravitino/lineage/LineageDispatcher.java`.
### Why are the changes needed?
Fixes #7208
### Does this PR introduce any user-facing change?
No.
### How was this patch tested?
- Ran `./gradlew :lineage:javadoc` to confirm the Javadoc warning was
resolved.
- Ran `./gradlew clean build` to ensure the build passes without errors.
---
.../src/main/java/org/apache/gravitino/lineage/LineageDispatcher.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/lineage/src/main/java/org/apache/gravitino/lineage/LineageDispatcher.java
b/lineage/src/main/java/org/apache/gravitino/lineage/LineageDispatcher.java
index ffa7f92058..ab1dcec840 100644
--- a/lineage/src/main/java/org/apache/gravitino/lineage/LineageDispatcher.java
+++ b/lineage/src/main/java/org/apache/gravitino/lineage/LineageDispatcher.java
@@ -30,7 +30,7 @@ import java.io.Closeable;
*
* <ol>
* <li>{@link #initialize(LineageConfig)} with required configurations
- * <li>Repeated calls to {@link #dispatchLineageEvent(RunEvent)}
+ * <li>Repeated calls to {@link
#dispatchLineageEvent(io.openlineage.server.OpenLineage.RunEvent)}
* <li>{@link #close()} for resource cleanup
* </ol>
*/