Skip to content

Commit 5e10c98

Browse files
committed
Release 2.9.2
Signed-off-by: Alexander Brandes <[email protected]>
1 parent 778c212 commit 5e10c98

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
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-core/src/main/java/com/fastasyncworldedit/core/command/tool/brush/ScatterBrush.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,15 +93,15 @@ public void build(EditSession editSession, BlockVector3 position, Pattern patter
9393
/**
9494
* @deprecated Use {@link ScatterBrush#finish(EditSession, BlockVector3Set, BlockVector3, Pattern, double)}
9595
*/
96-
@Deprecated(forRemoval = true, since = "TODO")
96+
@Deprecated(forRemoval = true, since = "2.9.2")
9797
public void finish(EditSession editSession, LocalBlockVectorSet placed, BlockVector3 pos, Pattern pattern, double size) {
9898
finish(editSession, (BlockVector3Set) placed, pos, pattern, size);
9999
}
100100

101101
/**
102102
* Complete the scatter brush process.
103103
*
104-
* @since TODO
104+
* @since 2.9.2
105105
*/
106106
public void finish(EditSession editSession, BlockVector3Set placed, BlockVector3 pos, Pattern pattern, double size) {
107107
}
@@ -118,7 +118,7 @@ public BlockVector3 getDirection(BlockVector3 pt) {
118118
/**
119119
* @deprecated Use {@link ScatterBrush#apply(EditSession, BlockVector3Set, BlockVector3, Pattern, double)}
120120
*/
121-
@Deprecated(forRemoval = true, since = "TODO")
121+
@Deprecated(forRemoval = true, since = "2.9.2")
122122
public void apply(EditSession editSession, LocalBlockVectorSet placed, BlockVector3 pt, Pattern p, double size) throws
123123
MaxChangedBlocksException {
124124
apply(editSession, (BlockVector3Set) placed, pt, p, size);
@@ -127,7 +127,7 @@ public void apply(EditSession editSession, LocalBlockVectorSet placed, BlockVect
127127
/**
128128
* Apply the scatter brush to a given position
129129
*
130-
* @since TODO
130+
* @since 2.9.2
131131
*/
132132
public void apply(EditSession editSession, BlockVector3Set placed, BlockVector3 pt, Pattern p, double size) throws
133133
MaxChangedBlocksException {

worldedit-core/src/main/java/com/fastasyncworldedit/core/extent/TransformExtent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/**
1616
* @deprecated Unused internal, will be removed in v3
1717
*/
18-
@Deprecated(forRemoval = true, since = "TODO")
18+
@Deprecated(forRemoval = true, since = "2.9.2")
1919
public class TransformExtent extends BlockTransformExtent {
2020

2121
private final MutableVector3 mutable1 = new MutableVector3();

worldedit-core/src/main/java/com/fastasyncworldedit/core/function/pattern/Linear2DBlockPattern.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @deprecated replaced by {@link com.sk89q.worldedit.function.pattern.RandomPattern}
1616
* combined with {@link com.fastasyncworldedit.core.math.random.Linear2DRandom}.
1717
*/
18-
@Deprecated(forRemoval = true, since = "TODO")
18+
@Deprecated(forRemoval = true, since = "2.9.2")
1919
public class Linear2DBlockPattern extends AbstractPattern {
2020

2121
private final Pattern[] patternsArray;

worldedit-core/src/main/java/com/fastasyncworldedit/core/function/pattern/Linear3DBlockPattern.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @deprecated replaced by {@link com.sk89q.worldedit.function.pattern.RandomPattern}
1616
* combined with {@link com.fastasyncworldedit.core.math.random.Linear3DRandom}.
1717
*/
18-
@Deprecated(forRemoval = true, since = "TODO")
18+
@Deprecated(forRemoval = true, since = "2.9.2")
1919
public class Linear3DBlockPattern extends AbstractPattern {
2020

2121
private final Pattern[] patternsArray;

worldedit-core/src/main/java/com/fastasyncworldedit/core/math/random/Linear2DRandom.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* A {@link SimpleRandom} that deterministically maps coordinates
88
* to values.
9-
* @since TODO
9+
* @since 2.9.2
1010
*/
1111
public class Linear2DRandom implements SimpleRandom {
1212
private final int xScale;

worldedit-core/src/main/java/com/fastasyncworldedit/core/math/random/Linear3DRandom.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* A {@link SimpleRandom} that deterministically maps coordinates
77
* to values.
8-
* @since TODO
8+
* @since 2.9.2
99
*/
1010
public class Linear3DRandom implements SimpleRandom {
1111

worldedit-core/src/main/java/com/fastasyncworldedit/core/util/collection/BlockVector3Set.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ static BlockVector3Set getAppropriateVectorSet(BlockVector3 size) {
5959
*
6060
* @param x x offset
6161
* @param z z offset
62-
* @since TODO
62+
* @since 2.9.2
6363
*/
6464
void setOffset(int x, int z);
6565

@@ -70,7 +70,7 @@ static BlockVector3Set getAppropriateVectorSet(BlockVector3 size) {
7070
* @param x x offset
7171
* @param y y offset
7272
* @param z z offset
73-
* @since TODO
73+
* @since 2.9.2
7474
*/
7575
void setOffset(int x, int y, int z);
7676

@@ -81,7 +81,7 @@ static BlockVector3Set getAppropriateVectorSet(BlockVector3 size) {
8181
* @param y y radius center
8282
* @param z z radius center
8383
* @return if radius is contained by the set
84-
* @since TODO
84+
* @since 2.9.2
8585
*/
8686
boolean containsRadius(int x, int y, int z, int radius);
8787

worldedit-core/src/main/java/com/sk89q/worldedit/function/pattern/Pattern.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ default Pattern fork() { // covariant return type
7979
* Get the likely maximum size of the volume this pattern will affect
8080
*
8181
* @return Pattern size
82-
* @since TODO
82+
* @since 2.9.2
8383
*/
8484
default BlockVector3 size() {
8585
return BlockVector3.ONE;

worldedit-core/src/main/java/com/sk89q/worldedit/regions/selector/RegionSelectorType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public enum RegionSelectorType {
6565
* Get a {@link RegionSelectorType} for the given {@link RegionSelector}
6666
*
6767
* @param selector Region selector to get type enum for
68-
* @since TODO
68+
* @since 2.9.2
6969
*/
7070
@Nullable
7171
public static RegionSelectorType getForSelector(RegionSelector selector) {

0 commit comments

Comments
 (0)