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/25 11:13:25 UTC

[incubator-eventmesh] branch master updated: org/apache/eventmesh/grpc/sub/CloudEventsSubscribeReply.java 41 Add final modifier.

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 4a1c36e3 org/apache/eventmesh/grpc/sub/CloudEventsSubscribeReply.java 41 Add final modifier.
     new d9b4c01f Merge pull request #1843 from renzhuyan/rzdev1025
4a1c36e3 is described below

commit 4a1c36e31ffa65cd7514ba6a85260830756a9193
Author: renzhuyan <40...@qq.com>
AuthorDate: Tue Oct 25 18:52:13 2022 +0800

    org/apache/eventmesh/grpc/sub/CloudEventsSubscribeReply.java 41
    Add final modifier.
---
 .../java/org/apache/eventmesh/grpc/sub/CloudEventsSubscribeReply.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/CloudEventsSubscribeReply.java b/eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/CloudEventsSubscribeReply.java
index 4a9b2aa9..71ca1169 100644
--- a/eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/CloudEventsSubscribeReply.java
+++ b/eventmesh-examples/src/main/java/org/apache/eventmesh/grpc/sub/CloudEventsSubscribeReply.java
@@ -38,7 +38,7 @@ import lombok.extern.slf4j.Slf4j;
 @Slf4j
 public class CloudEventsSubscribeReply implements ReceiveMsgHook<CloudEvent> {
 
-    public static CloudEventsSubscribeReply handler = new CloudEventsSubscribeReply();
+    public final static CloudEventsSubscribeReply handler = new CloudEventsSubscribeReply();
 
     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