You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by li...@apache.org on 2021/02/05 11:24:31 UTC

[dubbo] branch 2.7.8.1-release updated: return object type

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

liujun pushed a commit to branch 2.7.8.1-release
in repository https://gitbox.apache.org/repos/asf/dubbo.git


The following commit(s) were added to refs/heads/2.7.8.1-release by this push:
     new 26e3e89  return object type
26e3e89 is described below

commit 26e3e89249a3793993b5437c8f051a6ce6d7d054
Author: ken.lj <ke...@gmail.com>
AuthorDate: Fri Feb 5 19:23:38 2021 +0800

    return object type
---
 .../src/main/java/org/apache/dubbo/remoting/transport/CodecSupport.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/transport/CodecSupport.java b/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/transport/CodecSupport.java
index 8592293..d4beb50 100644
--- a/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/transport/CodecSupport.java
+++ b/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/transport/CodecSupport.java
@@ -74,7 +74,7 @@ public class CodecSupport {
         return ID_SERIALIZATION_MAP.get(id);
     }
 
-    public static byte getIDByName(String name) {
+    public static Byte getIDByName(String name) {
         return SERIALIZATIONNAME_ID_MAP.get(name);
     }