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

kerwin pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 2a844dc  [Improvement][Api] add @Override on the Override method 
(#8452)
2a844dc is described below

commit 2a844dcc67c8d9d79d21fe88583489566a96efa7
Author: KingsleyY <[email protected]>
AuthorDate: Tue Feb 22 13:10:28 2022 +0800

    [Improvement][Api] add @Override on the Override method (#8452)
---
 .../org/apache/dolphinscheduler/api/service/impl/TenantServiceImpl.java  | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/TenantServiceImpl.java
 
b/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/TenantServiceImpl.java
index 0601725..7aecb74 100644
--- 
a/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/TenantServiceImpl.java
+++ 
b/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/TenantServiceImpl.java
@@ -322,6 +322,7 @@ public class TenantServiceImpl extends BaseServiceImpl 
implements TenantService
      * @param tenantCode tenant code
      * @return ture if the tenant code exists, otherwise return false
      */
+    @Override
     public boolean checkTenantExists(String tenantCode) {
         Boolean existTenant = tenantMapper.existTenant(tenantCode);
         return existTenant == Boolean.TRUE;

Reply via email to