You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@eventmesh.apache.org by jo...@apache.org on 2022/12/10 01:26:03 UTC

[incubator-eventmesh] branch master updated: [Fixed] 'static' method declared 'final' (#2549)

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

jonyang 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 7f7e2f04f [Fixed] 'static' method declared 'final' (#2549)
7f7e2f04f is described below

commit 7f7e2f04f73f3ad9e10cec88e31c51d4638d7cd4
Author: sohel-79 <10...@users.noreply.github.com>
AuthorDate: Sat Dec 10 06:55:58 2022 +0530

    [Fixed] 'static' method declared 'final' (#2549)
    
    Removed final
    
    located at:
    eventmesh-webhook/eventmesh-webhook-api/src/main/java/org/apache/eventmesh/webhook/api/WebHookOperationConstant.java line 46
    
    #2540
---
 .../java/org/apache/eventmesh/webhook/api/WebHookOperationConstant.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eventmesh-webhook/eventmesh-webhook-api/src/main/java/org/apache/eventmesh/webhook/api/WebHookOperationConstant.java b/eventmesh-webhook/eventmesh-webhook-api/src/main/java/org/apache/eventmesh/webhook/api/WebHookOperationConstant.java
index 6c0a1a256..de79244e0 100644
--- a/eventmesh-webhook/eventmesh-webhook-api/src/main/java/org/apache/eventmesh/webhook/api/WebHookOperationConstant.java
+++ b/eventmesh-webhook/eventmesh-webhook-api/src/main/java/org/apache/eventmesh/webhook/api/WebHookOperationConstant.java
@@ -43,7 +43,7 @@ public class WebHookOperationConstant {
 
     public static final String EVENTMESH_HOME = "#{eventMeshHome}";
 
-    public static final String getFilePath(String filePath) {
+    public static String getFilePath(String filePath) {
         if (filePath.startsWith(EVENTMESH_HOME)) {
             String configPath = Constants.EVENTMESH_CONF_HOME;
 


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