Skip to content

Commit 5ef7461

Browse files
committed
Release 2.11.2
Signed-off-by: Alexander Brandes <[email protected]>
1 parent ea5589b commit 5ef7461

File tree

16 files changed

+34
-34
lines changed

16 files changed

+34
-34
lines changed

worldedit-core/src/main/java/com/fastasyncworldedit/core/history/change/ChangePopulator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import org.jetbrains.annotations.Nullable;
88

99
/**
10-
* @since TODO
10+
* @since 2.11.2
1111
*/
1212
@ApiStatus.Internal
1313
public interface ChangePopulator<C extends Change> {

worldedit-core/src/main/java/com/fastasyncworldedit/core/history/changeset/AbstractChangeSet.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ public ProcessorScope getScope() {
242242
return ProcessorScope.READING_SET_BLOCKS;
243243
}
244244

245-
@Deprecated(forRemoval = true, since = "TODO")
245+
@Deprecated(forRemoval = true, since = "2.11.2")
246246
public void addTileCreate(CompoundTag tag) {
247247
addTileCreate(adapt(tag));
248248
}
@@ -256,11 +256,11 @@ public void addTileCreate(CompoundTag tag) {
256256
* Creates a tile/block entity create change to this change set.
257257
*
258258
* @param tag the tile/block entity to add.
259-
* @since TODO
259+
* @since 2.11.2
260260
*/
261261
public abstract void addTileCreate(FaweCompoundTag tag);
262262

263-
@Deprecated(forRemoval = true, since = "TODO")
263+
@Deprecated(forRemoval = true, since = "2.11.2")
264264
public void addTileRemove(CompoundTag tag) {
265265
addTileRemove(adapt(tag));
266266
}
@@ -269,11 +269,11 @@ public void addTileRemove(CompoundTag tag) {
269269
* Creates a tile/block entity remove change to this change set.
270270
*
271271
* @param tag the tile/block entity to remove.
272-
* @since TODO
272+
* @since 2.11.2
273273
*/
274274
public abstract void addTileRemove(FaweCompoundTag tag);
275275

276-
@Deprecated(forRemoval = true, since = "TODO")
276+
@Deprecated(forRemoval = true, since = "2.11.2")
277277
public void addEntityRemove(CompoundTag tag) {
278278
addEntityRemove(adapt(tag));
279279
}
@@ -282,11 +282,11 @@ public void addEntityRemove(CompoundTag tag) {
282282
* Creates an entity remove change to this change set.
283283
*
284284
* @param tag the entity to remove.
285-
* @since TODO
285+
* @since 2.11.2
286286
*/
287287
public abstract void addEntityRemove(FaweCompoundTag tag);
288288

289-
@Deprecated(forRemoval = true, since = "TODO")
289+
@Deprecated(forRemoval = true, since = "2.11.2")
290290
public void addEntityCreate(CompoundTag tag) {
291291
addEntityCreate(adapt(tag));
292292
}
@@ -295,7 +295,7 @@ public void addEntityCreate(CompoundTag tag) {
295295
* Creates an entity create change to this change set.
296296
*
297297
* @param tag the entity to add.
298-
* @since TODO
298+
* @since 2.11.2
299299
*/
300300
public abstract void addEntityCreate(FaweCompoundTag tag);
301301

@@ -307,7 +307,7 @@ public Iterator<Change> getIterator(BlockBag blockBag, int mode, boolean redo) {
307307

308308
/**
309309
* {@return a coordinator to exchange sets of changes between a producer and a consumer}
310-
* @since TODO
310+
* @since 2.11.2
311311
*/
312312
@ApiStatus.Internal
313313
public abstract ChangeExchangeCoordinator getCoordinatedChanges(BlockBag blockBag, int mode, boolean dir);

worldedit-core/src/main/java/com/fastasyncworldedit/core/history/changeset/ChangeExchangeCoordinator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import java.util.function.BiConsumer;
88

99
/**
10-
* @since TODO
10+
* @since 2.11.2
1111
*/
1212
@ApiStatus.Internal
1313
public class ChangeExchangeCoordinator implements AutoCloseable {

worldedit-core/src/main/java/com/fastasyncworldedit/core/nbt/FaweCompoundTag.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
/**
99
* A wrapper around compound tags, potentially lazily transformed.
10-
* @since TODO
10+
* @since 2.11.2
1111
*/
1212
public sealed interface FaweCompoundTag permits EagerFaweCompoundTag, LazyFaweCompoundTag {
1313

worldedit-core/src/main/java/com/fastasyncworldedit/core/queue/IBlocks.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ public interface IBlocks extends Trimable {
5959

6060
BlockState getBlock(int x, int y, int z);
6161

62-
@Deprecated(forRemoval = true, since = "TODO")
62+
@Deprecated(forRemoval = true, since = "2.11.2")
6363
default Map<BlockVector3, CompoundTag> getTiles() {
6464
return AdaptedMap.immutable(tiles(), pos -> pos, IBlocks::toCompoundTag);
6565
}
6666

6767
Map<BlockVector3, FaweCompoundTag> tiles();
6868

69-
@Deprecated(forRemoval = true, since = "TODO")
69+
@Deprecated(forRemoval = true, since = "2.11.2")
7070
default CompoundTag getTile(int x, int y, int z) {
7171
final FaweCompoundTag tile = tile(x, y, z);
7272
if (tile == null) {
@@ -83,7 +83,7 @@ default CompoundTag getTile(int x, int y, int z) {
8383
@Nullable
8484
FaweCompoundTag tile(int x, int y, int z);
8585

86-
@Deprecated(forRemoval = true, since = "TODO")
86+
@Deprecated(forRemoval = true, since = "2.11.2")
8787
default Set<CompoundTag> getEntities() {
8888
return entities().stream()
8989
.map(IBlocks::toCompoundTag)

worldedit-core/src/main/java/com/fastasyncworldedit/core/queue/IChunkGet.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ default void optimize() {
4747

4848
<T extends Future<T>> T call(IChunkSet set, Runnable finalize);
4949

50-
@Deprecated(forRemoval = true, since = "TODO")
50+
@Deprecated(forRemoval = true, since = "2.11.2")
5151
default CompoundTag getEntity(UUID uuid) {
5252
final FaweCompoundTag entity = entity(uuid);
5353
if (entity == null) {
@@ -63,7 +63,7 @@ default CompoundTag getEntity(UUID uuid) {
6363
@Nullable FaweCompoundTag entity(UUID uuid);
6464

6565
@Override
66-
@Deprecated(forRemoval = true, since = "TODO")
66+
@Deprecated(forRemoval = true, since = "2.11.2")
6767
default CompoundTag getTile(int x, int y, int z) {
6868
return IBlocks.super.getTile(x, y, z);
6969
}

worldedit-core/src/main/java/com/fastasyncworldedit/core/queue/IChunkSet.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ default boolean setBiome(BlockVector3 position, BiomeType biome) {
3838
boolean isEmpty();
3939

4040
@Override
41-
@Deprecated(forRemoval = true, since = "TODO")
41+
@Deprecated(forRemoval = true, since = "2.11.2")
4242
default boolean setTile(int x, int y, int z, CompoundTag tile) throws WorldEditException {
4343
return tile(x, y, z, FaweCompoundTag.of(tile.toLinTag()));
4444
}
@@ -60,7 +60,7 @@ default boolean setTile(int x, int y, int z, CompoundTag tile) throws WorldEditE
6060

6161
void setFullBright(int layer);
6262

63-
@Deprecated(forRemoval = true, since = "TODO")
63+
@Deprecated(forRemoval = true, since = "2.11.2")
6464
default void setEntity(CompoundTag tag) {
6565
entity(FaweCompoundTag.of(tag::toLinTag));
6666
}

worldedit-core/src/main/java/com/fastasyncworldedit/core/queue/ITileInput.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import com.sk89q.jnbt.CompoundTag;
44

5-
@Deprecated(forRemoval = true, since = "TODO")
5+
@Deprecated(forRemoval = true, since = "2.11.2")
66
public interface ITileInput {
77

88
CompoundTag getTile(int x, int y, int z);

worldedit-core/src/main/java/com/fastasyncworldedit/core/util/MainUtil.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ public void close() {
428428
* @deprecated use {@link NbtUtils#withPosition} instead
429429
*/
430430
@Nonnull
431-
@Deprecated(forRemoval = true, since = "TODO")
431+
@Deprecated(forRemoval = true, since = "2.11.2")
432432
public static CompoundTag setPosition(@Nonnull CompoundTag tag, int x, int y, int z) {
433433
Map<String, Tag<?, ?>> value = new HashMap<>(tag.getValue());
434434
value.put("x", new IntTag(x));
@@ -446,7 +446,7 @@ public static CompoundTag setPosition(@Nonnull CompoundTag tag, int x, int y, in
446446
* @deprecated use {@link NbtUtils#withEntityInfo(LinCompoundTag, Entity)} instead
447447
*/
448448
@Nonnull
449-
@Deprecated(forRemoval = true, since = "TODO")
449+
@Deprecated(forRemoval = true, since = "2.11.2")
450450
public static CompoundTag setEntityInfo(@Nonnull CompoundTag tag, @Nonnull Entity entity) {
451451
Map<String, Tag<?, ?>> map = new HashMap<>(tag.getValue());
452452
map.put("Id", new StringTag(entity.getState().getType().id()));

worldedit-core/src/main/java/com/fastasyncworldedit/core/util/NbtUtils.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public static Map<String, LinTag<?>> getLinCompoundTagValues(LinCompoundTag tag)
9696
*
9797
* @param compoundTag the compound tag to extract uuid information from
9898
* @return the extracted UUID
99-
* @since TODO
99+
* @since 2.11.2
100100
*/
101101
public static UUID uuid(FaweCompoundTag compoundTag) {
102102
final LinCompoundTag linTag = compoundTag.linTag();
@@ -139,7 +139,7 @@ public static UUID uuid(FaweCompoundTag compoundTag) {
139139
* @param y New Y coordinate
140140
* @param z New Z coordinate
141141
* @return New tag
142-
* @since TODO
142+
* @since 2.11.2
143143
*/
144144
public static @Nonnull LinCompoundTag withPosition(@Nonnull LinCompoundTag tag, int x, int y, int z) {
145145
return tag.toBuilder()
@@ -157,7 +157,7 @@ public static UUID uuid(FaweCompoundTag compoundTag) {
157157
* @param y New Y coordinate
158158
* @param z New Z coordinate
159159
* @return New tag
160-
* @since TODO
160+
* @since 2.11.2
161161
*/
162162
public static @Nonnull FaweCompoundTag withPosition(@Nonnull FaweCompoundTag tag, int x, int y, int z) {
163163
return FaweCompoundTag.of(withPosition(tag.linTag(), x, y, z));
@@ -168,7 +168,7 @@ public static UUID uuid(FaweCompoundTag compoundTag) {
168168
*
169169
* @param tag the tag to copy
170170
* @param entity the entity to use the Id and the Pos from
171-
* @since TODO
171+
* @since 2.11.2
172172
*/
173173
public static @Nonnull LinCompoundTag withEntityInfo(@Nonnull LinCompoundTag tag, @Nonnull Entity entity) {
174174
final LinCompoundTag.Builder builder = tag.toBuilder()
@@ -191,7 +191,7 @@ public static UUID uuid(FaweCompoundTag compoundTag) {
191191
*
192192
* @param map the map to insert to
193193
* @param uuid the uuid to insert
194-
* @since TODO
194+
* @since 2.11.2
195195
*/
196196
public static void addUUIDToMap(Map<String, LinTag<?>> map, UUID uuid) {
197197
int[] uuidArray = new int[4];

0 commit comments

Comments
 (0)