You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by he...@apache.org on 2020/04/27 03:21:08 UTC

[dubbo] branch master updated: Remove @Adaptive annotation from bind method of ServletHttpBinder class. #5323

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

hengyunabc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo.git


The following commit(s) were added to refs/heads/master by this push:
     new ea16297  Remove @Adaptive annotation from bind method of ServletHttpBinder class. #5323
ea16297 is described below

commit ea16297f0450cb81b2ea8b7bfc7a092d1ef5fa8d
Author: xiaoheng <20...@qq.com>
AuthorDate: Fri Jan 10 23:16:24 2020 +0800

    Remove @Adaptive annotation from bind method of ServletHttpBinder class. #5323
---
 .../java/org/apache/dubbo/remoting/http/servlet/ServletHttpBinder.java   | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dubbo-remoting/dubbo-remoting-http/src/main/java/org/apache/dubbo/remoting/http/servlet/ServletHttpBinder.java b/dubbo-remoting/dubbo-remoting-http/src/main/java/org/apache/dubbo/remoting/http/servlet/ServletHttpBinder.java
index cb4c820..80a15d8 100644
--- a/dubbo-remoting/dubbo-remoting-http/src/main/java/org/apache/dubbo/remoting/http/servlet/ServletHttpBinder.java
+++ b/dubbo-remoting/dubbo-remoting-http/src/main/java/org/apache/dubbo/remoting/http/servlet/ServletHttpBinder.java
@@ -28,7 +28,6 @@ import org.apache.dubbo.remoting.http.HttpServer;
 public class ServletHttpBinder implements HttpBinder {
 
     @Override
-    @Adaptive()
     public HttpServer bind(URL url, HttpHandler handler) {
         return new ServletHttpServer(url, handler);
     }