Skip to content

Commit 3b7d126

Browse files
committed
Release 2.6.2
1 parent 832f93c commit 3b7d126

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ public Thread setMainThread() {
447447
* Gets the executor used for clipboard IO if clipboard on disk is enabled or null
448448
*
449449
* @return Executor used for clipboard IO if clipboard on disk is enabled or null
450-
* @since TODO
450+
* @since 2.6.2
451451
*/
452452
@Nullable
453453
public KeyQueuedExecutorService<UUID> getClipboardExecutor() {

worldedit-core/src/main/java/com/fastasyncworldedit/core/command/SuggestInputParseException.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ public class SuggestInputParseException extends InputParseException {
1919
/**
2020
* @deprecated Use {@link SuggestInputParseException#SuggestInputParseException(Component, Supplier)}
2121
*/
22-
@Deprecated(forRemoval = true, since = "TODO")
22+
@Deprecated(forRemoval = true, since = "2.6.2")
2323
public SuggestInputParseException(String msg, String prefix, Supplier<List<String>> getSuggestions) {
2424
this(new InputParseException(msg), getSuggestions);
2525
}
2626

2727
/**
2828
* @deprecated Use {@link SuggestInputParseException#of(Throwable, Supplier)}
2929
*/
30-
@Deprecated(forRemoval = true, since = "TODO")
30+
@Deprecated(forRemoval = true, since = "2.6.2")
3131
public static SuggestInputParseException of(Throwable other, String prefix, Supplier<List<String>> getSuggestions) {
3232
if (other instanceof InputParseException) {
3333
return of((InputParseException) other, getSuggestions);
@@ -38,7 +38,7 @@ public static SuggestInputParseException of(Throwable other, String prefix, Supp
3838
/**
3939
* @deprecated Use {@link SuggestInputParseException#of(InputParseException, Supplier)}
4040
*/
41-
@Deprecated(forRemoval = true, since = "TODO")
41+
@Deprecated(forRemoval = true, since = "2.6.2")
4242
public static SuggestInputParseException of(InputParseException other, String prefix, Supplier<List<String>> getSuggestions) {
4343
if (other instanceof SuggestInputParseException) {
4444
return (SuggestInputParseException) other;
@@ -49,7 +49,7 @@ public static SuggestInputParseException of(InputParseException other, String pr
4949
/**
5050
* @deprecated Use {@link SuggestInputParseException#SuggestInputParseException(InputParseException, Supplier)}
5151
*/
52-
@Deprecated(forRemoval = true, since = "TODO")
52+
@Deprecated(forRemoval = true, since = "2.6.2")
5353
public SuggestInputParseException(InputParseException other, String prefix, Supplier<List<String>> getSuggestions) {
5454
super(other.getRichMessage());
5555
checkNotNull(getSuggestions);
@@ -62,8 +62,8 @@ public SuggestInputParseException(InputParseException other, String prefix, Supp
6262
* Create a new SuggestInputParseException instance
6363
*
6464
* @param message Message to send
65-
* @param getSuggestions Supplier of list of sugegstions to give to user
66-
* @since TODO
65+
* @param getSuggestions Supplier of list of suggestions to give to user
66+
* @since 2.6.2
6767
*/
6868
public SuggestInputParseException(Component message, Supplier<List<String>> getSuggestions) {
6969
this(new InputParseException(message), getSuggestions);
@@ -129,7 +129,7 @@ public List<String> getSuggestions() {
129129
/**
130130
* @deprecated Unused
131131
*/
132-
@Deprecated(forRemoval = true, since = "TODO")
132+
@Deprecated(forRemoval = true, since = "2.6.2")
133133
public SuggestInputParseException prepend(String input) {
134134
// Do nothing
135135
return this;

worldedit-core/src/main/java/com/fastasyncworldedit/core/extent/clipboard/DiskOptimizedClipboard.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ public DiskOptimizedClipboard(BlockVector3 dimensions, File file) {
158158
* with data written to it.
159159
* @deprecated Will be made private, use {@link DiskOptimizedClipboard#loadFromFile(File)}
160160
*/
161-
@Deprecated(forRemoval = true, since = "TODO")
161+
@Deprecated(forRemoval = true, since = "2.6.2")
162162
public DiskOptimizedClipboard(File file) {
163163
this(file, VERSION);
164164
}
@@ -171,7 +171,7 @@ public DiskOptimizedClipboard(File file) {
171171
* @param versionOverride An override version to allow loading of older clipboards if required
172172
* @deprecated Will be made private, use {@link DiskOptimizedClipboard#loadFromFile(File)}
173173
*/
174-
@Deprecated(forRemoval = true, since = "TODO")
174+
@Deprecated(forRemoval = true, since = "2.6.2")
175175
public DiskOptimizedClipboard(File file, int versionOverride) {
176176
super(readSize(file, versionOverride), BlockVector3.ZERO);
177177
headerSize = getHeaderSizeOverrideFromVersion(versionOverride);

worldedit-core/src/main/java/com/fastasyncworldedit/core/queue/implementation/QueueHandler.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ private void operate(Queue<FutureTask> queue, long start, long currentAllocate)
166166
/**
167167
* @deprecated For removal without replacement.
168168
*/
169-
@Deprecated(forRemoval = true, since = "TODO")
169+
@Deprecated(forRemoval = true, since = "2.6.2")
170170
public <T extends Future<T>> void complete(Future<T> task) {
171171
try {
172172
while (task != null) {
@@ -422,7 +422,7 @@ private IQueueExtent<IQueueChunk> pool() {
422422
* @param parallel if the "set" being started is parallel/async
423423
* @deprecated To be replaced by better-named {@link QueueHandler#startUnsafe(boolean)} )}
424424
*/
425-
@Deprecated(forRemoval = true, since = "TODO")
425+
@Deprecated(forRemoval = true, since = "2.6.2")
426426
public void startSet(boolean parallel) {
427427
startUnsafe(parallel);
428428
}
@@ -434,7 +434,7 @@ public void startSet(boolean parallel) {
434434
* @param parallel if the "set" being started is parallel/async
435435
* @deprecated To be replaced by better-named {@link QueueHandler#endUnsafe(boolean)} )}
436436
*/
437-
@Deprecated(forRemoval = true, since = "TODO")
437+
@Deprecated(forRemoval = true, since = "2.6.2")
438438
public void endSet(boolean parallel) {
439439
startUnsafe(parallel);
440440
}

worldedit-core/src/main/java/com/fastasyncworldedit/core/queue/implementation/blocks/ThreadUnsafeCharBlocks.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* This is currently only used as a "copy" of {@link CharSetBlocks} to provide to
3131
* {@link com.fastasyncworldedit.core.queue.IBatchProcessor} instances for processing without overlapping the continuing edit.
3232
*
33-
* @since TODO
33+
* @since 2.6.2
3434
*/
3535
public class ThreadUnsafeCharBlocks implements IChunkSet, IBlocks {
3636

@@ -54,7 +54,7 @@ public class ThreadUnsafeCharBlocks implements IChunkSet, IBlocks {
5454
/**
5555
* New instance given the data stored in a {@link CharSetBlocks} instance.
5656
*
57-
* @since TODO
57+
* @since 2.6.2
5858
*/
5959
ThreadUnsafeCharBlocks(
6060
char[][] blocks,

worldedit-core/src/main/java/com/fastasyncworldedit/core/util/task/KeyQueuedExecutorService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* Executor service that queues tasks based on keys, executing tasks on a configurable {@link ThreadPoolExecutor}
1919
*
2020
* @param <K> Key type
21-
* @since TODO
21+
* @since 2.6.2
2222
*/
2323
public class KeyQueuedExecutorService<K> {
2424

0 commit comments

Comments
 (0)