build: Release 2.4.0

This commit is contained in:
Alexander Brandes
2022-06-27 13:52:50 +02:00
parent edfc5a7a01
commit f812fc14ab
6 changed files with 7 additions and 7 deletions

View File

@ -151,7 +151,7 @@ public enum FaweCache implements Trimable {
* @param withInitial The supplier used to determine the initial value if a thread cache is created, else to provide a new
* instance of the class being cached if on the main thread.
* @return a {@link Function} referencing a cache, or the given {@link Supplier}
* @since TODO
* @since 2.4.0
*/
public <V> LongFunction<V> createMainThreadSafeCache(Supplier<V> withInitial) {
return new LongFunction<>() {

View File

@ -36,7 +36,7 @@ public class BlendBall implements Brush {
* @param onlyAir Only consider air for comparing existing blocks, and for altering existing blocks
* @param mask Mask to limit the blocks being considered for alteration. Will also limit blocks types able to be
* placed, and will consider blocks not meeting the mask as air
* @since TODO
* @since 2.4.0
*/
public BlendBall(int minFreqDiff, boolean onlyAir, @Nullable CachedMask mask) {
this.minFreqDiff = minFreqDiff;

View File

@ -25,7 +25,7 @@ public class CachedMask extends AbstractDelegateMask implements ResettableMask {
*
* @param mask Mask to cache results of
* @param local If the area will be small
* @since TODO
* @since 2.4.0
*/
public CachedMask(Mask mask, boolean local) {
super(mask);