Several performance and stability improvements

This commit is contained in:
Auxilor
2021-11-04 12:57:39 +00:00
parent 54b7e99c82
commit c72b15c3a6
8 changed files with 102 additions and 92 deletions

View File

@@ -27,6 +27,15 @@ public interface PlayerProfileHandler {
* Save all player data.
*
* @param async If the saving should be done asynchronously.
* @deprecated async is now handled automatically depending on implementation.
*/
void saveAll(boolean async);
@Deprecated
default void saveAll(boolean async) {
saveAll();
}
/**
* Save all player data.
*/
void saveAll();
}