Merge branch 'v6' into v7

This commit is contained in:
Alexander Brandes
2023-01-23 13:40:52 +01:00
3 changed files with 9 additions and 1 deletions

View File

@ -491,6 +491,10 @@ public abstract class SchematicHandler {
return null;
}
/**
* The legacy web interface is deprecated for removal in favor of Arkitektonika.
*/
@Deprecated(forRemoval = true, since = "TODO")
public List<String> getSaves(UUID uuid) {
String rawJSON;
try {

View File

@ -231,6 +231,10 @@ public abstract class WorldUtil {
*/
public abstract void refreshChunk(int x, int z, String world);
/**
* The legacy web interface is deprecated for removal in favor of Arkitektonika.
*/
@Deprecated(forRemoval = true, since = "TODO")
public void upload(
final @NonNull Plot plot,
final @Nullable UUID uuid,