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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -66,7 +66,7 @@ public interface NetWorkUser {
|
||||
|
||||
void setSentResourcePack(boolean sentResourcePack);
|
||||
|
||||
void setClientInformation(ClientInformation clientInfo);
|
||||
void setClientInformation(ClientInformation clientInformation);
|
||||
|
||||
ClientInformation getClientInformation();
|
||||
ClientInformation clientInformation();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user