Skip to content

Commit a4a1126

Browse files
committed
Back to snapshot for development
1 parent e4a214e commit a4a1126

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Diff for: build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ logger.lifecycle("""
3434
*******************************************
3535
""")
3636

37-
var rootVersion by extra("2.8.4")
37+
var rootVersion by extra("2.8.5")
3838
var snapshot by extra("SNAPSHOT")
3939
var revision: String by extra("")
4040
var buildNumber by extra("")
@@ -52,7 +52,7 @@ ext {
5252
}
5353
}
5454

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

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

Diff for: worldedit-core/src/main/java/com/fastasyncworldedit/core/queue/IBatchProcessor.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ default boolean trimY(IChunkSet set, int minY, int maxY, final boolean keepInsid
157157
* @return false if chunk is empty of NBT
158158
* @deprecated tiles are stored in chunk-normalised coordinate space and thus cannot use the same function as entities
159159
*/
160-
@Deprecated(forRemoval = true, since = "TODO")
160+
@Deprecated(forRemoval = true, since = "2.8.4")
161161
default boolean trimNBT(IChunkSet set, Function<BlockVector3, Boolean> contains) {
162162
Set<CompoundTag> ents = set.getEntities();
163163
if (!ents.isEmpty()) {
@@ -175,7 +175,7 @@ default boolean trimNBT(IChunkSet set, Function<BlockVector3, Boolean> contains)
175175
* Utility method to trim entity and blocks with a provided contains function.
176176
*
177177
* @return false if chunk is empty of NBT
178-
* @since TODO
178+
* @since 2.8.4
179179
*/
180180
default boolean trimNBT(
181181
IChunkSet set, Function<BlockVector3, Boolean> containsEntity, Function<BlockVector3, Boolean> containsTile

Diff for: worldedit-core/src/main/java/com/fastasyncworldedit/core/queue/IChunk.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ default <V extends IChunk> void init(IQueueExtent<V> extent, int x, int z) {
3838
* Return the minimum block coordinate of the chunk
3939
*
4040
* @return BlockVector3 of minimum block coordinate
41-
* @since TODO
41+
* @since 2.8.4
4242
*/
4343
default BlockVector3 getChunkBlockCoord() {
4444
return BlockVector3.at(getX() << 4, getMinY(), getZ() << 4);

0 commit comments

Comments
 (0)