9
0
mirror of https://github.com/Xiao-MoMi/craft-engine.git synced 2025-12-26 02:19:23 +00:00

refactor(user): 规范命名

This commit is contained in:
jhqwqmc
2025-06-24 11:35:21 +08:00
parent ba6ff17f97
commit 4bc23b5f40
2 changed files with 5 additions and 5 deletions

View File

@@ -887,12 +887,12 @@ public class BukkitServerPlayer extends Player {
}
@Override
public void setClientInformation(ClientInformation clientInfo) {
this.clientInformation = clientInfo;
public void setClientInformation(ClientInformation clientInformation) {
this.clientInformation = clientInformation;
}
@Override
public ClientInformation getClientInformation() {
public ClientInformation clientInformation() {
return this.clientInformation;
}

View File

@@ -66,7 +66,7 @@ public interface NetWorkUser {
void setSentResourcePack(boolean sentResourcePack);
void setClientInformation(ClientInformation clientInfo);
void setClientInformation(ClientInformation clientInformation);
ClientInformation getClientInformation();
ClientInformation clientInformation();
}