Skip to content

Commit

Permalink
Fix javadoc warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
booky10 committed Nov 13, 2024
1 parent d1f0618 commit b686eb4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,28 +96,28 @@ public static void encodeSource(EntityPositionSource source, ClientVersion versi
}

/**
* Note: Only used when handling particles through registries and version is >= 1.19.
* Note: Only used when handling particles through registries and version is at least 1.19.
*/
public Optional<UUID> getEntityUniqueId() {
return this.entityUniqueId;
}

/**
* Note: Only used when handling particles through registries and version is >= 1.19.
* Note: Only used when handling particles through registries and version is at least 1.19.
*/
public void setEntityUniqueId(Optional<UUID> entityUniqueId) {
this.entityUniqueId = entityUniqueId;
}

/**
* Note: Only used when handling particles through particle packets or version is < 1.19.
* Note: Only used when handling particles through particle packets or version is older than 1.19.
*/
public int getEntityId() {
return this.entityId;
}

/**
* Note: Only used when handling particles through particle packets or version is < 1.19.
* Note: Only used when handling particles through particle packets or version is older than 1.19.
*/
public void setEntityId(int entityId) {
this.entityId = entityId;
Expand Down

0 comments on commit b686eb4

Please sign in to comment.