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/10/26 11:51:34 UTC

[incubator-eventmesh] branch master updated: EventmeshSubscribeReply类中第40行添加final修饰字段

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 dc18d1b7 EventmeshSubscribeReply类中第40行添加final修饰字段
     new 4663772d Merge pull request #1886 from caihonghaoCYF/fix_patch_irvingcai
dc18d1b7 is described below

commit dc18d1b780efb8463c9c614033a0f2e708aeed60
Author: 17665311932 <92...@qq.com>
AuthorDate: Wed Oct 26 16:58:57 2022 +0800

    EventmeshSubscribeReply类中第40行添加final修饰字段
---
 .../java/org/apache/eventmesh/grpc/sub/EventmeshSubscribeReply.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/EventmeshSubscribeReply.java b/eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/EventmeshSubscribeReply.java
index 082dacb9..67fa0feb 100644
--- a/eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/EventmeshSubscribeReply.java
+++ b/eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/EventmeshSubscribeReply.java
@@ -37,7 +37,7 @@ import lombok.extern.slf4j.Slf4j;
 @Slf4j
 public class EventmeshSubscribeReply implements ReceiveMsgHook<EventMeshMessage> {
 
-    public static EventmeshSubscribeReply handler = new EventmeshSubscribeReply();
+    public static final EventmeshSubscribeReply handler = new EventmeshSubscribeReply();
 
     public static void main(String[] args) throws InterruptedException {
         Properties properties = Utils.readPropertiesFile(ExampleConstants.CONFIG_FILE_NAME);


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