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/eventmesh.git


The following commit(s) were added to refs/heads/master by this push:
     new 472d598ae [ISSUE #3837]Change to private and add the transient 
modifier[HttpCommand] (#3841)
472d598ae is described below

commit 472d598ae3d51e047e3bc589a7a75364e7278a8d
Author: Harshitha Sudhakar 
<[email protected]>
AuthorDate: Mon May 15 15:06:51 2023 +0530

    [ISSUE #3837]Change to private and add the transient modifier[HttpCommand] 
(#3841)
    
    * Update HttpCommand.java
    
    Changed to private and add the transient modifier at lines 60,61
    
    * Update HttpCommand.java
    
    * Update HttpCommand.java
    
    * Update HttpCommand.java
    
    * Update HttpCommand.java
    
    ---------
    
    Co-authored-by: mike_xwm <[email protected]>
---
 .../java/org/apache/eventmesh/common/protocol/http/HttpCommand.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/http/HttpCommand.java
 
b/eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/http/HttpCommand.java
index 840370ad5..76cda7a70 100644
--- 
a/eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/http/HttpCommand.java
+++ 
b/eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/http/HttpCommand.java
@@ -57,9 +57,9 @@ public class HttpCommand implements ProtocolTransportObject {
 
     public String httpVersion;
 
-    public Header header;
+    private transient Header header;
 
-    public Body body;
+    private transient Body body;
 
     //Command request time
     public long reqTime;


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to