Compare commits

..

1 Commits

Author SHA1 Message Date
Renovate Bot
2c6df07792 build: Update release-drafter/release-drafter action to v5.20.0 2022-05-16 12:37:49 +00:00
9 changed files with 12 additions and 10 deletions

View File

@@ -14,6 +14,6 @@ jobs:
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
- uses: release-drafter/release-drafter@v5.20.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

2
.gitignore vendored
View File

@@ -133,5 +133,3 @@ classes/
*.bat
docs/
build/
.DS_Store

4
.lift.toml Normal file
View File

@@ -0,0 +1,4 @@
jdkVersion = "17"
build = "gradle clean build -x test"
tools = ["findsecbugs", "ErrorProne", "Semgrep", "Detekt", "Infer"]
ignoreRules = ["CatchAndPrintStackTrace", "ReferenceEquality", "FallThrough", "FutureReturnValueIgnored", "MixedMutabilityReturnType", "EmptyCatch", "MissingCasesInEnumSwitch", "OperatorPrecedence", "StaticAssignmentInConstructor", "ReferenceEquality", "EqualsHashCode", "EqualsGetClass", "TypeParameterUnusedInFormals", "StringSplitter", "InlineMeSuggester", "NULL_DEREFERENCE"]

View File

@@ -64,7 +64,7 @@ public class AugmentedUtils {
* @param chunkZ Chunk Z position
* @param queue Queue to write to, if desired.
* @return true if generation occurred.
* @since 6.8.0
* @since TODO
*/
public static boolean generateChunk(
final @NonNull String world,
@@ -187,7 +187,7 @@ public class AugmentedUtils {
* @deprecated Use {@link AugmentedUtils#generateChunk(String, int, int, QueueCoordinator)} as chunkObject is not required
* in the above method
*/
@Deprecated(forRemoval = true, since = "6.8.0")
@Deprecated(forRemoval = true, since = "TODO")
public static boolean generate(
@Nullable Object chunkObject,
final @NonNull String world,

View File

@@ -64,7 +64,7 @@ public class BlockArrayCacheScopedQueueCoordinator extends ScopedQueueCoordinato
*
* @param min Inclusive location of the minimum point to limit the scope to.
* @param max Inclusive location of the maximum point to limit the scope to.
* @since 6.8.0
* @since TODO
*/
public BlockArrayCacheScopedQueueCoordinator(Location min, Location max) {
super(null, min, max);

View File

@@ -41,7 +41,7 @@ import org.checkerframework.checker.nullness.qual.Nullable;
*
* @deprecated This class is poorly designed and will no longer be used in P2
*/
@Deprecated(forRemoval = true, since = "6.8.0")
@Deprecated(forRemoval = true, since = "TODO")
public class ChunkQueueCoordinator extends ScopedQueueCoordinator {
public final BiomeType[][][] biomeResult;

View File

@@ -253,7 +253,7 @@ public abstract class QueueCoordinator {
* If the queue should accept biome placement
*
* @param enabled If biomes should be enabled
* @since 6.8.0
* @since TODO
*/
public abstract void setBiomesEnabled(boolean enabled);

View File

@@ -40,7 +40,7 @@ import org.checkerframework.checker.nullness.qual.Nullable;
*
* @deprecated This should be renamed to NormalizedScopedQueueCoordinator or something.
*/
@Deprecated(forRemoval = true, since = "6.8.0")
@Deprecated(forRemoval = true, since = "TODO")
public class ScopedQueueCoordinator extends DelegateQueueCoordinator {
private final Location min;

View File

@@ -18,7 +18,7 @@ plugins {
idea
}
version = "6.8.0"
version = "6.7.1-SNAPSHOT"
allprojects {
group = "com.plotsquared"