Repository: brooklyn-dist Updated Branches: refs/heads/master ee69b3c78 -> 4a74b7631
Delete use of deprecated ApplicationBuilder (in tests) Project: http://git-wip-us.apache.org/repos/asf/brooklyn-dist/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-dist/commit/ad6672d0 Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-dist/tree/ad6672d0 Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-dist/diff/ad6672d0 Branch: refs/heads/master Commit: ad6672d06f4acc65d69ab4d90ad1426272ddb7c7 Parents: ee69b3c Author: Aled Sage <[email protected]> Authored: Mon Jun 19 13:16:34 2017 +0100 Committer: Aled Sage <[email protected]> Committed: Mon Jun 19 13:16:34 2017 +0100 ---------------------------------------------------------------------- .../org/apache/brooklyn/cli/BaseCliIntegrationTest.java | 10 ---------- 1 file changed, 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-dist/blob/ad6672d0/dist/src/test/java/org/apache/brooklyn/cli/BaseCliIntegrationTest.java ---------------------------------------------------------------------- diff --git a/dist/src/test/java/org/apache/brooklyn/cli/BaseCliIntegrationTest.java b/dist/src/test/java/org/apache/brooklyn/cli/BaseCliIntegrationTest.java index 4cb2d2b..7fdfe41 100644 --- a/dist/src/test/java/org/apache/brooklyn/cli/BaseCliIntegrationTest.java +++ b/dist/src/test/java/org/apache/brooklyn/cli/BaseCliIntegrationTest.java @@ -35,7 +35,6 @@ import java.util.concurrent.Future; import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeoutException; -import org.apache.brooklyn.core.entity.factory.ApplicationBuilder; import org.testng.annotations.AfterMethod; import org.testng.annotations.BeforeMethod; @@ -176,14 +175,5 @@ public class BaseCliIntegrationTest { protected void assertConsoleErrorEmpty() { assertTrue(consoleError.isEmpty(), "Error present; error=" + consoleError); } - }; - - /** An empty application for testing. */ - public static class TestApplication extends ApplicationBuilder { - @Override - protected void doBuild() { - // Empty, for testing - } } - }
