From commits-return-46495-archive-asf-public=cust-asf.ponee.io@tomee.apache.org Mon Jan 28 17:47:55 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 2313F18067A for ; Mon, 28 Jan 2019 17:47:54 +0100 (CET) Received: (qmail 8689 invoked by uid 500); 28 Jan 2019 16:47:54 -0000 Mailing-List: contact commits-help@tomee.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tomee.apache.org Delivered-To: mailing list commits@tomee.apache.org Received: (qmail 8670 invoked by uid 99); 28 Jan 2019 16:47:54 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Jan 2019 16:47:54 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id AB5C6855CB; Mon, 28 Jan 2019 16:47:53 +0000 (UTC) Date: Mon, 28 Jan 2019 16:47:54 +0000 To: "commits@tomee.apache.org" Subject: [tomee] 01/02: TOMEE-2455 - removed redundant public modifier from ServerService interface MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: radcortez@apache.org In-Reply-To: <154869407357.29440.8167374316475762011@gitbox.apache.org> References: <154869407357.29440.8167374316475762011@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: tomee X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Rev: a48b3c7a45530b353cd8875799e1efc506de8cf4 X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20190128164753.AB5C6855CB@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. radcortez pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomee.git commit a48b3c7a45530b353cd8875799e1efc506de8cf4 Author: Bogdan Stirbat AuthorDate: Thu Jan 17 22:45:02 2019 +0200 TOMEE-2455 - removed redundant public modifier from ServerService interface --- .../main/java/org/apache/openejb/server/ServerService.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/server/openejb-server/src/main/java/org/apache/openejb/server/ServerService.java b/server/openejb-server/src/main/java/org/apache/openejb/server/ServerService.java index c563d68..6e7c4f8 100644 --- a/server/openejb-server/src/main/java/org/apache/openejb/server/ServerService.java +++ b/server/openejb-server/src/main/java/org/apache/openejb/server/ServerService.java @@ -30,18 +30,18 @@ import org.apache.openejb.spi.Service; @Managed public interface ServerService extends Service { - public void start() throws ServiceException; + void start() throws ServiceException; - public void stop() throws ServiceException; + void stop() throws ServiceException; - public void service(InputStream in, OutputStream out) throws ServiceException, IOException; + void service(InputStream in, OutputStream out) throws ServiceException, IOException; - public void service(Socket socket) throws ServiceException, IOException; + void service(Socket socket) throws ServiceException, IOException; - public String getName(); + String getName(); - public String getIP(); + String getIP(); - public int getPort(); + int getPort(); }