Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id DFF40200B7C for ; Thu, 25 Aug 2016 03:47:49 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id DE89D160ACD; Thu, 25 Aug 2016 01:47:49 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 34096160AC2 for ; Thu, 25 Aug 2016 03:47:49 +0200 (CEST) Received: (qmail 77590 invoked by uid 500); 25 Aug 2016 01:47:48 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 77547 invoked by uid 99); 25 Aug 2016 01:47:48 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Aug 2016 01:47:48 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 292A5E97DD; Thu, 25 Aug 2016 01:47:48 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: reta@apache.org To: commits@cxf.apache.org Date: Thu, 25 Aug 2016 01:47:52 -0000 Message-Id: <5e51bcf6bb3d467290790c46124c7ec5@git.apache.org> In-Reply-To: <9d7a175f47f8481085f063a5335d0997@git.apache.org> References: <9d7a175f47f8481085f063a5335d0997@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [05/36] cxf git commit: Minor update to Eureka demo application archived-at: Thu, 25 Aug 2016 01:47:50 -0000 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/4974ae04 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/4974ae04 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/4974ae04 Branch: refs/heads/master-jaxrs-2.1 Commit: 4974ae04c177d09e02193eb38d53777167f0c048 Parents: 7e4873d Author: Sergey Beryozkin Authored: Tue Aug 16 17:14:41 2016 +0100 Committer: Sergey Beryozkin Committed: Tue Aug 16 17:14:41 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/4974ae04/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); }