Put more legacy web interface deprecations in place

This commit is contained in:
Alexander Brandes 2023-01-23 13:40:35 +01:00
parent 6130c3dfa5
commit ab357deb48
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C
3 changed files with 9 additions and 1 deletions

View File

@ -162,7 +162,7 @@ public class BukkitPlotGenerator extends ChunkGenerator implements GeneratorWrap
} }
/** /**
* The entire method is deprecated, but kept for compatibility with <=1.16.2. * The entire method is deprecated, but kept for compatibility with versions lower than or equal to 1.16.2.
* The method will be removed in future versions, because WorldEdit and FastAsyncWorldEdit only support the latest point * The method will be removed in future versions, because WorldEdit and FastAsyncWorldEdit only support the latest point
* release. * release.
*/ */

View File

@ -491,6 +491,10 @@ public abstract class SchematicHandler {
return null; 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) { public List<String> getSaves(UUID uuid) {
String rawJSON; String rawJSON;
try { try {

View File

@ -252,6 +252,10 @@ public abstract class WorldUtil {
*/ */
public abstract void refreshChunk(int x, int z, String world); 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( public void upload(
final @NonNull Plot plot, final @NonNull Plot plot,
final @Nullable UUID uuid, final @Nullable UUID uuid,