Deprecate StoredObject#getUser (#4104)

This commit is contained in:
EnZaXD 2024-08-21 19:14:40 +02:00 committed by GitHub
parent 78abf8be00
commit 10ee7e1930
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,6 +29,11 @@ public abstract class StoredObject implements StorableObject {
this.user = user; this.user = user;
} }
public UserConnection user() {
return this.user;
}
@Deprecated
public UserConnection getUser() { public UserConnection getUser() {
return user; return user;
} }