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

lihaopeng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git


The following commit(s) were added to refs/heads/master by this push:
     new c18f7a31f1 remove redundant this (#9878)
c18f7a31f1 is described below

commit c18f7a31f1d1d55ba7975552a3b45d301dfe9ea5
Author: VISHAL SINGH <98081274+vikasss7...@users.noreply.github.com>
AuthorDate: Sun Jun 5 10:39:14 2022 +0530

    remove redundant this (#9878)
    
    Co-authored-by: vishalsingh <2018uec1...@gmail.com>
---
 fe/fe-core/src/main/java/org/apache/doris/alter/Alter.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/alter/Alter.java 
b/fe/fe-core/src/main/java/org/apache/doris/alter/Alter.java
index d64440713a..4857ef7d90 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/alter/Alter.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/alter/Alter.java
@@ -734,14 +734,14 @@ public class Alter {
     }
 
     public AlterHandler getSchemaChangeHandler() {
-        return this.schemaChangeHandler;
+        return schemaChangeHandler;
     }
 
     public AlterHandler getMaterializedViewHandler() {
-        return this.materializedViewHandler;
+        return materializedViewHandler;
     }
 
     public AlterHandler getClusterHandler() {
-        return this.clusterHandler;
+        return clusterHandler;
     }
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to