mirror of
https://github.com/Minestom/Minestom.git
synced 2025-03-02 11:21:15 +01:00
Increase readability when using static fields instead of local ones
This commit is contained in:
parent
23fc19430a
commit
d4110632a4
@ -147,8 +147,8 @@ public abstract class Entity implements Viewable, EventHandler, DataContainer, P
|
|||||||
|
|
||||||
setAutoViewable(true);
|
setAutoViewable(true);
|
||||||
|
|
||||||
entityById.put(id, this);
|
Entity.entityById.put(id, this);
|
||||||
entityByUuid.put(uuid, this);
|
Entity.entityByUuid.put(uuid, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Entity(@NotNull EntityType entityType, @NotNull Position spawnPosition) {
|
public Entity(@NotNull EntityType entityType, @NotNull Position spawnPosition) {
|
||||||
@ -179,7 +179,7 @@ public abstract class Entity implements Viewable, EventHandler, DataContainer, P
|
|||||||
*/
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
public static Entity getEntity(int id) {
|
public static Entity getEntity(int id) {
|
||||||
return entityById.getOrDefault(id, null);
|
return Entity.entityById.getOrDefault(id, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -190,7 +190,7 @@ public abstract class Entity implements Viewable, EventHandler, DataContainer, P
|
|||||||
*/
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
public static Entity getEntity(@NotNull UUID uuid) {
|
public static Entity getEntity(@NotNull UUID uuid) {
|
||||||
return entityByUuid.getOrDefault(uuid, null);
|
return Entity.entityByUuid.getOrDefault(uuid, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user