Skip to content

Commit f369fb0

Browse files
committed
Release 2.12.3
Signed-off-by: Alexander Brandes <[email protected]>
1 parent 4e57613 commit f369fb0

File tree

18 files changed

+30
-30
lines changed

18 files changed

+30
-30
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ ext {
5252
}
5353
}
5454

55-
version = String.format("%s-%s", rootVersion, buildNumber)
55+
version = String.format("%s", rootVersion)
5656

5757
if (!project.hasProperty("gitCommitHash")) {
5858
apply(plugin = "org.ajoberstar.grgit")

worldedit-bukkit/src/main/java/com/sk89q/worldedit/bukkit/adapter/BukkitImplAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ default IBatchProcessor getTickingPostProcessor() {
407407

408408
/**
409409
* Returns an {@link PlacementStateProcessor} instance for processing placed blocks to "fix" them.
410-
* @since TODO
410+
* @since 2.12.3
411411
*/
412412
default PlacementStateProcessor getPlatformPlacementProcessor(Extent extent, BlockTypeMask mask, Region region) {
413413
return null;

worldedit-core/src/main/java/com/fastasyncworldedit/core/extent/clipboard/io/schematic/MinecraftStructure.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,13 @@ public MinecraftStructure(@Nonnull DataOutput out) {
7070
}
7171

7272
@SuppressWarnings("removal")
73-
@Deprecated(since = "TODO")
73+
@Deprecated(since = "2.12.3")
7474
public MinecraftStructure(@Nonnull com.sk89q.jnbt.NBTInputStream inputStream) {
7575
this.in = inputStream.dataInputStream();
7676
}
7777

7878
@SuppressWarnings("removal")
79-
@Deprecated(since = "TODO")
79+
@Deprecated(since = "2.12.3")
8080
public MinecraftStructure(@Nonnull com.sk89q.jnbt.NBTOutputStream out) {
8181
this.out = out;
8282
}
@@ -176,7 +176,7 @@ public Clipboard read(UUID clipboardId) throws IOException {
176176
/**
177177
* @deprecated owner is not used anymore, use {@link #write(Clipboard)}
178178
*/
179-
@Deprecated(since = "TODO")
179+
@Deprecated(since = "2.12.3")
180180
public void write(Clipboard clipboard, @SuppressWarnings("unused") String owner) throws IOException {
181181
this.write(clipboard);
182182
}

worldedit-core/src/main/java/com/fastasyncworldedit/core/extent/processor/PlacementStateProcessor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
/**
4343
* Processor/pattern that uses Minecraft internal methods to determine the shape of blocks, e.g. stairs and fences
4444
*
45-
* @since TODO
45+
* @since 2.12.3
4646
*/
4747
public abstract class PlacementStateProcessor extends AbstractDelegateExtent implements IBatchProcessor, Pattern {
4848

@@ -76,7 +76,7 @@ public abstract class PlacementStateProcessor extends AbstractDelegateExtent imp
7676
*
7777
* @param extent Extent to use
7878
* @param mask Mask of blocks to perform updates on
79-
* @since TODO
79+
* @since 2.12.3
8080
*/
8181
public PlacementStateProcessor(Extent extent, BlockTypeMask mask, Region region) {
8282
super(extent);

worldedit-core/src/main/java/com/fastasyncworldedit/core/function/mask/Adjacent2DMask.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* Mask that tests adjacency only in 2D/the same y-level
1010
*
11-
* @since TODO
11+
* @since 2.12.3
1212
*/
1313
public class Adjacent2DMask extends AbstractMask {
1414

@@ -23,7 +23,7 @@ public class Adjacent2DMask extends AbstractMask {
2323
* @param mask Mask required to be adjacent
2424
* @param requiredMin Minimum number of positive adjacency matches required
2525
* @param requiredMax Maximum number of positive adjacency matches required
26-
* @since TODO
26+
* @since 2.12.3
2727
*/
2828
public Adjacent2DMask(Mask mask, int requiredMin, int requiredMax) {
2929
this.mask = mask;

worldedit-core/src/main/java/com/fastasyncworldedit/core/function/mask/AdjacentAny2DMask.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* Optimized version of {@link Adjacent2DMask} for testing for any single adjacency
1212
*
13-
* @since TODO
13+
* @since 2.12.3
1414
*/
1515
public class AdjacentAny2DMask extends AbstractMask {
1616

@@ -21,7 +21,7 @@ public class AdjacentAny2DMask extends AbstractMask {
2121
* Optimized version of {@link Adjacent2DMask} for testing for any single adjacency. Caches results of the adjacent mask
2222
*
2323
* @param mask Mask required to be adjacent
24-
* @since TODO
24+
* @since 2.12.3
2525
*/
2626
public AdjacentAny2DMask(Mask mask) {
2727
this(mask, true);
@@ -32,7 +32,7 @@ public AdjacentAny2DMask(Mask mask) {
3232
*
3333
* @param mask Mask required to be adjacent
3434
* @param cache If the result of the adjacency mask should be cached
35-
* @since TODO
35+
* @since 2.12.3
3636
*/
3737
public AdjacentAny2DMask(Mask mask, boolean cache) {
3838
this.mask = cache ? CachedMask.cache(mask) : mask;
@@ -61,7 +61,7 @@ public boolean test(BlockVector3 v) {
6161
*
6262
* @param extent extent to test in
6363
* @param position position to test at
64-
* @since TODO
64+
* @since 2.12.3
6565
*/
6666
public boolean test(Extent extent, BlockVector3 position) {
6767
if (!(mask instanceof AbstractExtentMask extentMask)) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ default void join() {
6565
/**
6666
* Signals to the filter the edit has concluded
6767
*
68-
* @since TODO
68+
* @since 2.12.3
6969
*/
7070
default void finish() {
7171

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public interface IBlocks extends Trimable {
4242
* This method might be conservative and return {@code true} even if the section is empty.
4343
*
4444
* @param layer the section's layer
45-
* @since TODO
45+
* @since 2.12.3
4646
*/
4747
default boolean hasNonEmptySection(int layer) {
4848
return hasSection(layer);

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
@@ -143,14 +143,14 @@ default IChunkSet createCopy() {
143143
/**
144144
* Set the side effects to be used when settings these blocks
145145
*
146-
* @since TODO
146+
* @since 2.12.3
147147
*/
148148
void setSideEffectSet(@Nonnull SideEffectSet sideEffectSet);
149149

150150
/**
151151
* Get the side effects to be used when settings these blocks
152152
*
153-
* @since TODO
153+
* @since 2.12.3
154154
*/
155155
@Nonnull
156156
SideEffectSet getSideEffectSet();

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ default BlockVector3 getMaximumPoint() {
8585
/**
8686
* Set the side effects to be used with this extent
8787
*
88-
* @since TODO
88+
* @since 2.12.3
8989
*/
9090
void setSideEffectSet(SideEffectSet sideEffectSet);
9191

9292
/**
9393
* Get the side effects to be used with this extent
9494
*
95-
* @since TODO
95+
* @since 2.12.3
9696
*/
9797
SideEffectSet getSideEffectSet();
9898

0 commit comments

Comments
 (0)