Fix whitespace

This commit is contained in:
zax71 2023-08-30 17:16:51 +01:00
parent 8444383f16
commit 560a6d4d7e
1 changed files with 0 additions and 7 deletions

View File

@ -132,7 +132,6 @@ public class DumpsCommand extends MultiverseCommand {
versionEvent.putDetailedVersionInfo("plugins.md", "# Plugins\n\n" + getPluginList());
}
// Deal with default case of logs
LogsType logsType = parsedFlags.flagValue("--logs", LogsType.class);
if (logsType == null) {
@ -140,9 +139,6 @@ public class DumpsCommand extends MultiverseCommand {
Logging.finer("Logs was null so set to mclogs");
}
// Deal with default case of upload
Services services = parsedFlags.flagValue("--upload", Services.class);
if (services == null) {
@ -150,7 +146,6 @@ public class DumpsCommand extends MultiverseCommand {
Logging.finer("Upload was null so set to pastegg");
}
// Need to be final for some reason...
final LogsType finalLogsType = logsType;
final Services finalServices = services;
@ -207,7 +202,6 @@ public class DumpsCommand extends MultiverseCommand {
* @return A string containing the latest.log file
*/
private String getLogs() {
// Get the Path of latest.log
Path logsPath = plugin.getServer().getWorldContainer().toPath().resolve("logs").resolve("latest.log");
@ -229,7 +223,6 @@ public class DumpsCommand extends MultiverseCommand {
}
private void addDebugInfoToEvent(MVVersionEvent event) {
// Add the legacy file, but as markdown, so it's readable
event.putDetailedVersionInfo("version.md", this.getVersionString());