This commit is contained in:
Auxilor
2022-02-01 10:08:21 +00:00
parent e8f4bdd4aa
commit 94e9b47f02
3 changed files with 5 additions and 5 deletions

View File

@@ -48,7 +48,7 @@ public interface ProfileHandler {
*/
@Deprecated
default void savePlayer(@NotNull UUID uuid) {
this.saveKeysForPlayer(uuid, PersistentDataKey.values());
this.saveKeysFor(uuid, PersistentDataKey.values());
}
/**
@@ -59,8 +59,8 @@ public interface ProfileHandler {
* @param uuid The uuid.
* @param keys The keys.
*/
void saveKeysForPlayer(@NotNull UUID uuid,
@NotNull Set<PersistentDataKey<?>> keys);
void saveKeysFor(@NotNull UUID uuid,
@NotNull Set<PersistentDataKey<?>> keys);
/**
* Save all player data.