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

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


The following commit(s) were added to refs/heads/master by this push:
     new cc92526  polish variable name
cc92526 is described below

commit cc92526976dfa692eb1124f901d55ceb27b51fa5
Author: ken.lj <[email protected]>
AuthorDate: Thu Mar 19 12:19:48 2020 +0800

    polish variable name
---
 src/main/java/com/alibaba/com/caucho/hessian/io/Hessian2Input.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/com/alibaba/com/caucho/hessian/io/Hessian2Input.java 
b/src/main/java/com/alibaba/com/caucho/hessian/io/Hessian2Input.java
index 09a290b..749ad91 100644
--- a/src/main/java/com/alibaba/com/caucho/hessian/io/Hessian2Input.java
+++ b/src/main/java/com/alibaba/com/caucho/hessian/io/Hessian2Input.java
@@ -187,12 +187,12 @@ public class Hessian2Input
     @Override
     public boolean checkAndReadNull() {
         try {
-            int _tmp_offset = _offset;
+            int tmp_offset = _offset;
             int tag = read();
             if ('N' == tag) {
                 return true;
             }
-            _offset = _tmp_offset;
+            _offset = tmp_offset;
         } catch (IOException ignored) {
         }
         return false;

Reply via email to