build: Release 6.8.0

This commit is contained in:
Alexander Brandes
2022-05-18 22:05:31 +02:00
parent d037da33cb
commit 41f546ca6b
7 changed files with 7 additions and 11 deletions

View File

@ -64,7 +64,7 @@ public class AugmentedUtils {
* @param chunkZ Chunk Z position
* @param queue Queue to write to, if desired.
* @return true if generation occurred.
* @since TODO
* @since 6.8.0
*/
public static boolean generateChunk(
final @NonNull String world,
@ -187,7 +187,7 @@ public class AugmentedUtils {
* @deprecated Use {@link AugmentedUtils#generateChunk(String, int, int, QueueCoordinator)} as chunkObject is not required
* in the above method
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "6.8.0")
public static boolean generate(
@Nullable Object chunkObject,
final @NonNull String world,

View File

@ -64,7 +64,7 @@ public class BlockArrayCacheScopedQueueCoordinator extends ScopedQueueCoordinato
*
* @param min Inclusive location of the minimum point to limit the scope to.
* @param max Inclusive location of the maximum point to limit the scope to.
* @since TODO
* @since 6.8.0
*/
public BlockArrayCacheScopedQueueCoordinator(Location min, Location max) {
super(null, min, max);

View File

@ -41,7 +41,7 @@ import org.checkerframework.checker.nullness.qual.Nullable;
*
* @deprecated This class is poorly designed and will no longer be used in P2
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "6.8.0")
public class ChunkQueueCoordinator extends ScopedQueueCoordinator {
public final BiomeType[][][] biomeResult;

View File

@ -253,7 +253,7 @@ public abstract class QueueCoordinator {
* If the queue should accept biome placement
*
* @param enabled If biomes should be enabled
* @since TODO
* @since 6.8.0
*/
public abstract void setBiomesEnabled(boolean enabled);

View File

@ -40,7 +40,7 @@ import org.checkerframework.checker.nullness.qual.Nullable;
*
* @deprecated This should be renamed to NormalizedScopedQueueCoordinator or something.
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "6.8.0")
public class ScopedQueueCoordinator extends DelegateQueueCoordinator {
private final Location min;