Revert "Debug args"

This reverts commit c90a1b0780.
This commit is contained in:
spencergibb
2023-11-03 14:40:29 -04:00
parent c90a1b0780
commit 91ab43f85b

View File

@@ -23,7 +23,6 @@ import releaser.internal.spring.SpringReleaser;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.WebApplicationType;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.util.StringUtils;
@SpringBootApplication
public class ReleaserApplication extends ReleaserCommandLineRunner {
@@ -33,7 +32,6 @@ public class ReleaserApplication extends ReleaserCommandLineRunner {
}
public static void main(String[] args) {
System.err.println("Releaser Args = " + StringUtils.arrayToCommaDelimitedString(args));
SpringApplication application = new SpringApplication(ReleaserApplication.class);
application.setWebApplicationType(WebApplicationType.NONE);
application.run(args);