Skip to content

Commit 28fb77e

Browse files
committed
Release 2.12.1
Signed-off-by: Alexander Brandes <[email protected]>
1 parent 1cad61c commit 28fb77e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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/Fawe.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ public Thread setMainThread() {
469469
* {@link Fawe#submitUUIDKeyQueuedTask(UUID, Runnable, Object), {@link Fawe#submitUUIDKeyQueuedTask(UUID, Callable)}
470470
* to ensure if a thread is already a UUID-queued thread, the task is immediately run
471471
*/
472-
@Deprecated(forRemoval = true, since = "TODO")
472+
@Deprecated(forRemoval = true, since = "2.12.1")
473473
public KeyQueuedExecutorService<UUID> getClipboardExecutor() {
474474
return this.uuidKeyQueuedExecutorService;
475475
}
@@ -478,7 +478,7 @@ public KeyQueuedExecutorService<UUID> getClipboardExecutor() {
478478
* Submit a task to the UUID key-queued executor
479479
*
480480
* @return Future representing the tank
481-
* @since TODO
481+
* @since 2.12.1
482482
*/
483483
public Future<?> submitUUIDKeyQueuedTask(UUID uuid, Runnable runnable) {
484484
if (Thread.currentThread() instanceof UUIDKeyQueuedThreadFactory.UUIDKeyQueuedThread) {
@@ -492,7 +492,7 @@ public Future<?> submitUUIDKeyQueuedTask(UUID uuid, Runnable runnable) {
492492
* Submit a task to the UUID key-queued executor
493493
*
494494
* @return Future representing the tank
495-
* @since TODO
495+
* @since 2.12.1
496496
*/
497497
public <T> Future<T> submitUUIDKeyQueuedTask(UUID uuid, Runnable runnable, T result) {
498498
if (Thread.currentThread() instanceof UUIDKeyQueuedThreadFactory.UUIDKeyQueuedThread) {
@@ -506,7 +506,7 @@ public <T> Future<T> submitUUIDKeyQueuedTask(UUID uuid, Runnable runnable, T res
506506
* Submit a task to the UUID key-queued executor
507507
*
508508
* @return Future representing the tank
509-
* @since TODO
509+
* @since 2.12.1
510510
*/
511511
public <T> Future<T> submitUUIDKeyQueuedTask(UUID uuid, Callable<T> callable) {
512512
if (Thread.currentThread() instanceof UUIDKeyQueuedThreadFactory.UUIDKeyQueuedThread) {

worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public boolean hasProperty(PropertyKey key) {
251251
* {@return whether this block type has a given property}
252252
*
253253
* @param property the expected property
254-
* @since TODO
254+
* @since 2.12.1
255255
*/
256256
public boolean hasProperty(Property<?> property) {
257257
int ordinal = property.getKey().getId();

0 commit comments

Comments
 (0)