Remove manifold string plugin

This commit is contained in:
James Seibel
2024-11-17 08:03:15 -06:00
parent 108df99633
commit bc72e925df
3 changed files with 3 additions and 6 deletions
-3
View File
@@ -184,9 +184,6 @@ subprojects { p ->
annotationProcessor("systems.manifold:manifold-preprocessor:${rootProject.manifold_version}")
}
annotationProcessor("systems.manifold:manifold-strings:${rootProject.manifold_version}")
testAnnotationProcessor("systems.manifold:manifold-strings:${rootProject.manifold_version}")
// Log4j
if (p == project(":core"))
{
@@ -57,11 +57,11 @@ public class ConfigCommand extends AbstractCommand
}
LiteralArgumentBuilder<CommandSourceStack> subcommand = literal(configEntry.getServersideShortName())
.executes(commandContext -> this.sendSuccessResponse(commandContext, "Current value of ${configEntry.getServersideShortName()} is ${configEntry.get()}"));
.executes(commandContext -> this.sendSuccessResponse(commandContext, "Current value of ["+configEntry.getServersideShortName()+"] is ["+configEntry.get()+"]"));
ToIntBiFunction<CommandContext<CommandSourceStack>, Object> updateConfigValue = (commandContext, value) -> {
configEntry.set(value);
return this.sendSuccessResponse(commandContext, "Changed the value of ${configEntry.getServersideShortName()} to $value");
return this.sendSuccessResponse(commandContext, "Changed the value of ["+configEntry.getServersideShortName()+"] to ["+value+"]");
};
// Enum type needs a special case since enums aren't represented by existing argument type