You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by ra...@apache.org on 2019/01/28 16:47:54 UTC

[tomee] 01/02: TOMEE-2455 - removed redundant public modifier from ServerService interface

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 <bo...@gmail.com>
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();
 
 }