Skip to content

Commit

Permalink
Disable verification for -cli
Browse files Browse the repository at this point in the history
  • Loading branch information
me4502 committed Apr 2, 2024
1 parent c3b13aa commit 2673a15
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 160 deletions.
2 changes: 1 addition & 1 deletion verification/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ tasks.check {
// Generic setup for all tasks
// Pull the version before our current version.
val baseVersion = "(,${rootProject.version.toString().substringBefore("-SNAPSHOT")}["
for (projectFragment in listOf("bukkit", "cli", "core", "fabric", "forge", "sponge")) {
for (projectFragment in listOf("bukkit", "core", "fabric", "forge", "sponge")) {
val capitalizedFragment =
projectFragment.replaceFirstChar { if (it.isLowerCase()) it.titlecase(Locale.ROOT) else it.toString() }
val proj = project(":worldedit-$projectFragment")
Expand Down
155 changes: 0 additions & 155 deletions verification/src/changes/accepted-cli-public-api-changes.json

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@ public class CLICommandSender implements Actor {

private final Logger sender;

public CLICommandSender(CLIWorldEdit cliWorldEdit, Logger sender) {
this(sender);
}

public CLICommandSender(Logger sender) {
checkNotNull(sender);

Expand Down

0 comments on commit 2673a15

Please sign in to comment.