Skip to content

Commit

Permalink
Release 2.12.1
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Brandes <[email protected]>
  • Loading branch information
NotMyFault committed Nov 19, 2024
1 parent 1cad61c commit 28fb77e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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 @@ -469,7 +469,7 @@ public Thread setMainThread() {
* {@link Fawe#submitUUIDKeyQueuedTask(UUID, Runnable, Object), {@link Fawe#submitUUIDKeyQueuedTask(UUID, Callable)}
* to ensure if a thread is already a UUID-queued thread, the task is immediately run
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "2.12.1")
public KeyQueuedExecutorService<UUID> getClipboardExecutor() {
return this.uuidKeyQueuedExecutorService;
}
Expand All @@ -478,7 +478,7 @@ public KeyQueuedExecutorService<UUID> getClipboardExecutor() {
* Submit a task to the UUID key-queued executor
*
* @return Future representing the tank
* @since TODO
* @since 2.12.1
*/
public Future<?> submitUUIDKeyQueuedTask(UUID uuid, Runnable runnable) {
if (Thread.currentThread() instanceof UUIDKeyQueuedThreadFactory.UUIDKeyQueuedThread) {
Expand All @@ -492,7 +492,7 @@ public Future<?> submitUUIDKeyQueuedTask(UUID uuid, Runnable runnable) {
* Submit a task to the UUID key-queued executor
*
* @return Future representing the tank
* @since TODO
* @since 2.12.1
*/
public <T> Future<T> submitUUIDKeyQueuedTask(UUID uuid, Runnable runnable, T result) {
if (Thread.currentThread() instanceof UUIDKeyQueuedThreadFactory.UUIDKeyQueuedThread) {
Expand All @@ -506,7 +506,7 @@ public <T> Future<T> submitUUIDKeyQueuedTask(UUID uuid, Runnable runnable, T res
* Submit a task to the UUID key-queued executor
*
* @return Future representing the tank
* @since TODO
* @since 2.12.1
*/
public <T> Future<T> submitUUIDKeyQueuedTask(UUID uuid, Callable<T> callable) {
if (Thread.currentThread() instanceof UUIDKeyQueuedThreadFactory.UUIDKeyQueuedThread) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ public boolean hasProperty(PropertyKey key) {
* {@return whether this block type has a given property}
*
* @param property the expected property
* @since TODO
* @since 2.12.1
*/
public boolean hasProperty(Property<?> property) {
int ordinal = property.getKey().getId();
Expand Down

0 comments on commit 28fb77e

Please sign in to comment.