From c3ce6d95deb11a3a318d44dacafdd4bd1f0661b3 Mon Sep 17 00:00:00 2001 From: "Lukas Rieger (Blue)" Date: Wed, 7 Feb 2024 20:45:28 +0100 Subject: [PATCH] Deprecate BlueMapWorld#getSaveFolder() --- src/main/java/de/bluecolored/bluemap/api/BlueMapWorld.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/java/de/bluecolored/bluemap/api/BlueMapWorld.java b/src/main/java/de/bluecolored/bluemap/api/BlueMapWorld.java index 5385ef5..b30951d 100644 --- a/src/main/java/de/bluecolored/bluemap/api/BlueMapWorld.java +++ b/src/main/java/de/bluecolored/bluemap/api/BlueMapWorld.java @@ -42,10 +42,13 @@ public interface BlueMapWorld { String getId(); /** - * Getter for the {@link Path} of this world's save-files (folder). This matches the folder configured in bluemap's config for this map ( world: ). + * Getter for the {@link Path} of this world's save-files (folder). + * This matches the folder configured in bluemap's config for this map ( world: ). * @return the save-folder of this world. + * @deprecated Getting the save-folder of a world is no longer supported. As it is not guaranteed that every world has a save-folder. */ @DebugDump + @Deprecated Path getSaveFolder(); /**