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 19eedc7f2 fixed #2525,return result directly without local variable
     new d90d9da81 Merge pull request #2585 from keranbingaa/issue_2525
19eedc7f2 is described below

commit 19eedc7f23e331f6a4abc48ae489ce27fa1b693b
Author: keranbingaa <[email protected]>
AuthorDate: Tue Dec 13 23:22:20 2022 +0800

    fixed #2525,return result directly without local variable
---
 .../common/protocol/catalog/protos/QueryOperationsResponse.java        | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/catalog/protos/QueryOperationsResponse.java
 
b/eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/catalog/protos/QueryOperationsResponse.java
index 541d38dad..03a7c8c03 100644
--- 
a/eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/catalog/protos/QueryOperationsResponse.java
+++ 
b/eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/catalog/protos/QueryOperationsResponse.java
@@ -342,8 +342,7 @@ public final class QueryOperationsResponse extends
     @Override
     protected Builder newBuilderForType(
         BuilderParent parent) {
-        Builder builder = new Builder(parent);
-        return builder;
+        return new Builder(parent);
     }
 
     /**


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

Reply via email to