Skip to content

Commit

Permalink
Release 2.9.2
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Brandes <mc.cache@web.de>
  • Loading branch information
NotMyFault committed Apr 4, 2024
1 parent 778c212 commit 5e10c98
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ ext {
}
}

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

if (!project.hasProperty("gitCommitHash")) {
apply(plugin = "org.ajoberstar.grgit")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,15 @@ public void build(EditSession editSession, BlockVector3 position, Pattern patter
/**
* @deprecated Use {@link ScatterBrush#finish(EditSession, BlockVector3Set, BlockVector3, Pattern, double)}
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "2.9.2")
public void finish(EditSession editSession, LocalBlockVectorSet placed, BlockVector3 pos, Pattern pattern, double size) {
finish(editSession, (BlockVector3Set) placed, pos, pattern, size);
}

/**
* Complete the scatter brush process.
*
* @since TODO
* @since 2.9.2
*/
public void finish(EditSession editSession, BlockVector3Set placed, BlockVector3 pos, Pattern pattern, double size) {
}
Expand All @@ -118,7 +118,7 @@ public BlockVector3 getDirection(BlockVector3 pt) {
/**
* @deprecated Use {@link ScatterBrush#apply(EditSession, BlockVector3Set, BlockVector3, Pattern, double)}
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "2.9.2")
public void apply(EditSession editSession, LocalBlockVectorSet placed, BlockVector3 pt, Pattern p, double size) throws
MaxChangedBlocksException {
apply(editSession, (BlockVector3Set) placed, pt, p, size);
Expand All @@ -127,7 +127,7 @@ public void apply(EditSession editSession, LocalBlockVectorSet placed, BlockVect
/**
* Apply the scatter brush to a given position
*
* @since TODO
* @since 2.9.2
*/
public void apply(EditSession editSession, BlockVector3Set placed, BlockVector3 pt, Pattern p, double size) throws
MaxChangedBlocksException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* @deprecated Unused internal, will be removed in v3
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "2.9.2")
public class TransformExtent extends BlockTransformExtent {

private final MutableVector3 mutable1 = new MutableVector3();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @deprecated replaced by {@link com.sk89q.worldedit.function.pattern.RandomPattern}
* combined with {@link com.fastasyncworldedit.core.math.random.Linear2DRandom}.
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "2.9.2")
public class Linear2DBlockPattern extends AbstractPattern {

private final Pattern[] patternsArray;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @deprecated replaced by {@link com.sk89q.worldedit.function.pattern.RandomPattern}
* combined with {@link com.fastasyncworldedit.core.math.random.Linear3DRandom}.
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "2.9.2")
public class Linear3DBlockPattern extends AbstractPattern {

private final Pattern[] patternsArray;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/**
* A {@link SimpleRandom} that deterministically maps coordinates
* to values.
* @since TODO
* @since 2.9.2
*/
public class Linear2DRandom implements SimpleRandom {
private final int xScale;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/**
* A {@link SimpleRandom} that deterministically maps coordinates
* to values.
* @since TODO
* @since 2.9.2
*/
public class Linear3DRandom implements SimpleRandom {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ static BlockVector3Set getAppropriateVectorSet(BlockVector3 size) {
*
* @param x x offset
* @param z z offset
* @since TODO
* @since 2.9.2
*/
void setOffset(int x, int z);

Expand All @@ -70,7 +70,7 @@ static BlockVector3Set getAppropriateVectorSet(BlockVector3 size) {
* @param x x offset
* @param y y offset
* @param z z offset
* @since TODO
* @since 2.9.2
*/
void setOffset(int x, int y, int z);

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ default Pattern fork() { // covariant return type
* Get the likely maximum size of the volume this pattern will affect
*
* @return Pattern size
* @since TODO
* @since 2.9.2
*/
default BlockVector3 size() {
return BlockVector3.ONE;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public enum RegionSelectorType {
* Get a {@link RegionSelectorType} for the given {@link RegionSelector}
*
* @param selector Region selector to get type enum for
* @since TODO
* @since 2.9.2
*/
@Nullable
public static RegionSelectorType getForSelector(RegionSelector selector) {
Expand Down

0 comments on commit 5e10c98

Please sign in to comment.