You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by li...@apache.org on 2022/06/05 05:09:20 UTC

[incubator-doris] branch master updated: remove redundant this (#9878)

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 <98...@users.noreply.github.com>
AuthorDate: Sun Jun 5 10:39:14 2022 +0530

    remove redundant this (#9878)
    
    Co-authored-by: vishalsingh <20...@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-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org