Repository: cxf Updated Branches: refs/heads/3.1.x-fixes 62b95fbd9 -> 72f0980e4
Minor update to Eureka demo application Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/72f0980e Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/72f0980e Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/72f0980e Branch: refs/heads/3.1.x-fixes Commit: 72f0980e49e9249e75c3cfcef39602b27d3a92a4 Parents: 62b95fb Author: Sergey Beryozkin <[email protected]> Authored: Tue Aug 16 17:14:41 2016 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Tue Aug 16 17:15:28 2016 +0100 ---------------------------------------------------------------------- .../src/main/java/registry/eureka/RegistryApplication.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/72f0980e/distribution/src/main/release/samples/jax_rs/spring_boot_scan/eureka-registry/src/main/java/registry/eureka/RegistryApplication.java ---------------------------------------------------------------------- diff --git a/distribution/src/main/release/samples/jax_rs/spring_boot_scan/eureka-registry/src/main/java/registry/eureka/RegistryApplication.java b/distribution/src/main/release/samples/jax_rs/spring_boot_scan/eureka-registry/src/main/java/registry/eureka/RegistryApplication.java index a481fae..2a3cdd4 100644 --- a/distribution/src/main/release/samples/jax_rs/spring_boot_scan/eureka-registry/src/main/java/registry/eureka/RegistryApplication.java +++ b/distribution/src/main/release/samples/jax_rs/spring_boot_scan/eureka-registry/src/main/java/registry/eureka/RegistryApplication.java @@ -24,10 +24,8 @@ import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; @SpringBootApplication @EnableEurekaServer -public final class RegistryApplication { - private RegistryApplication() { - } - +public class RegistryApplication { + public static void main(String[] args) { SpringApplication.run(RegistryApplication.class, args); }
