Repository: cxf Updated Branches: refs/heads/3.1.x-fixes 2fc4aea17 -> 6c5225f0b
Fix checkstyle Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/6c5225f0 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/6c5225f0 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/6c5225f0 Branch: refs/heads/3.1.x-fixes Commit: 6c5225f0b84517f869808e8f6a9665f3ebdfe0bc Parents: 2fc4aea Author: Daniel Kulp <[email protected]> Authored: Fri Oct 14 13:10:08 2016 -0400 Committer: Daniel Kulp <[email protected]> Committed: Fri Oct 14 13:10:08 2016 -0400 ---------------------------------------------------------------------- .../src/main/java/registry/eureka/RegistryApplication.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/6c5225f0/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 2a3cdd4..e5fc30e 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,7 +24,9 @@ import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; @SpringBootApplication @EnableEurekaServer -public class RegistryApplication { +public static final class RegistryApplication { + private RegistryApplication() { + } public static void main(String[] args) { SpringApplication.run(RegistryApplication.class, args);
