From 55ad2b93718b5c2fd9766e2ff0cb867a4ff0110b Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Thu, 8 Sep 2022 19:52:01 -0700 Subject: [PATCH] Remove accidentally committed debug code --- .../java/smoketest/batch/SampleBatchApplicationTests.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-batch/src/test/java/smoketest/batch/SampleBatchApplicationTests.java b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-batch/src/test/java/smoketest/batch/SampleBatchApplicationTests.java index ac58d70220a..8ea8ee390d0 100644 --- a/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-batch/src/test/java/smoketest/batch/SampleBatchApplicationTests.java +++ b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-batch/src/test/java/smoketest/batch/SampleBatchApplicationTests.java @@ -34,9 +34,4 @@ class SampleBatchApplicationTests { assertThat(output).contains("completed with the following parameters"); } - public static void main(String[] args) throws ClassNotFoundException { - System.getProperties().forEach((k, v) -> System.out.println(k + "=" + v)); - Class.forName("org.springframework.boot.web.servlet.context.ServletWebServerApplicationContextFactory"); - } - }