Skip to content

Commit

Permalink
Fix javadoc in Utils
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Collado <collado.mike@gmail.com>
  • Loading branch information
collado-mike committed May 20, 2022
1 parent 736cc4b commit 55e0c6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/src/main/java/marquez/common/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private Utils() {}
* Airflow integration for constructing some run IDs as UUIDs. We use the same namespace to
* construct the same UUIDs when absolutely necessary (e.g., backfills, backward compatibility)
*
* @see https://datatracker.ietf.org/doc/html/rfc4122#appendix-C
* @see "https://datatracker.ietf.org/doc/html/rfc4122#appendix-C"
*/
public static final UUID NAMESPACE_URL_UUID =
UUID.fromString("6ba7b811-9dad-11d1-80b4-00c04fd430c8");
Expand Down Expand Up @@ -159,7 +159,7 @@ public static UUID toUuid(@NonNull final String uuidString) {
* Construct a name-based {@link UUID} based on the {@link #NAMESPACE_URL_UUID} namespace. Name
* parts are separated by a dot (.) character.
*
* @see https://datatracker.ietf.org/doc/html/rfc4122#page-13
* @see "https://datatracker.ietf.org/doc/html/rfc4122#page-13"
* @param nameParts
* @return
*/
Expand All @@ -181,7 +181,7 @@ public static UUID toNameBasedUuid(String... nameParts) {
* marquez.service.models.LineageEvent.RunLink#runId} field is a valid {@link UUID}, use it.
* Otherwise, compute a {@link UUID} from the job name and the reported runId. If the job name
* contains a dot (.), only return the portion up to the last dot in the name (this attempts to
* address airflow tasks, which always report the job name as <dag_name>.<task_name>
* address airflow tasks, which always report the job name as &lt;dag_name&gt;.&lt;task_name&lt;
*
* @param parent
* @return
Expand Down

0 comments on commit 55e0c6e

Please sign in to comment.