You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@eventmesh.apache.org by mi...@apache.org on 2022/12/28 01:56:28 UTC

[incubator-eventmesh] branch master updated: remove public

This is an automated email from the ASF dual-hosted git repository.

mikexue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-eventmesh.git


The following commit(s) were added to refs/heads/master by this push:
     new fc86900d4 remove public
     new bd09d615d Merge pull request #2692 from weihubeats/AsyncHttpProcessor
fc86900d4 is described below

commit fc86900d4244cb26c5239af5cbfae7784445f0ce
Author: weihu <we...@163.com>
AuthorDate: Tue Dec 27 19:38:19 2022 +0800

    remove public
---
 .../runtime/core/protocol/http/processor/AsyncHttpProcessor.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eventmesh-runtime/src/main/java/org/apache/eventmesh/runtime/core/protocol/http/processor/AsyncHttpProcessor.java b/eventmesh-runtime/src/main/java/org/apache/eventmesh/runtime/core/protocol/http/processor/AsyncHttpProcessor.java
index 250415d14..501d5e3c5 100644
--- a/eventmesh-runtime/src/main/java/org/apache/eventmesh/runtime/core/protocol/http/processor/AsyncHttpProcessor.java
+++ b/eventmesh-runtime/src/main/java/org/apache/eventmesh/runtime/core/protocol/http/processor/AsyncHttpProcessor.java
@@ -27,9 +27,9 @@ import io.netty.handler.codec.http.HttpResponse;
  */
 public interface AsyncHttpProcessor extends HttpProcessor {
 
-    public default HttpResponse handler(HttpRequest httpRequest) {
+    default HttpResponse handler(HttpRequest httpRequest) {
         return null;
     }
 
-    public void handler(HandlerSpecific handlerSpecific, HttpRequest httpRequest) throws Exception;
+    void handler(HandlerSpecific handlerSpecific, HttpRequest httpRequest) throws Exception;
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@eventmesh.apache.org
For additional commands, e-mail: commits-help@eventmesh.apache.org