Signed-off-by: Alexander Brandes <mc.cache@web.de>
Dieser Commit ist enthalten in:
Alexander Brandes 2024-11-19 17:51:43 +01:00
Ursprung 1cad61c4c4
Commit 28fb77eb20
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 158F5701A6AAD00C
3 geänderte Dateien mit 6 neuen und 6 gelöschten Zeilen

Datei anzeigen

@ -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")

Datei anzeigen

@ -469,7 +469,7 @@ public class Fawe {
* {@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;
}
@ -478,7 +478,7 @@ public class Fawe {
* 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) {
@ -492,7 +492,7 @@ public class Fawe {
* 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) {
@ -506,7 +506,7 @@ public class Fawe {
* 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) {

Datei anzeigen

@ -251,7 +251,7 @@ public class BlockType implements Keyed, Pattern {
* {@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();