You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2021/06/08 11:04:20 UTC

[dubbo] branch 3.0 updated: fix compile error (#8008)

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

albumenj pushed a commit to branch 3.0
in repository https://gitbox.apache.org/repos/asf/dubbo.git


The following commit(s) were added to refs/heads/3.0 by this push:
     new 175b57c  fix compile error (#8008)
175b57c is described below

commit 175b57ce539f0001b90aa588628f97de446f64f4
Author: Wu Zhiguo <ch...@startdt.com>
AuthorDate: Tue Jun 8 19:03:59 2021 +0800

    fix compile error (#8008)
---
 .../org/apache/dubbo/registry/client/migration/MigrationInvoker.java  | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/dubbo-registry/dubbo-registry-api/src/main/java/org/apache/dubbo/registry/client/migration/MigrationInvoker.java b/dubbo-registry/dubbo-registry-api/src/main/java/org/apache/dubbo/registry/client/migration/MigrationInvoker.java
index 1d837ad..d903a6b 100644
--- a/dubbo-registry/dubbo-registry-api/src/main/java/org/apache/dubbo/registry/client/migration/MigrationInvoker.java
+++ b/dubbo-registry/dubbo-registry-api/src/main/java/org/apache/dubbo/registry/client/migration/MigrationInvoker.java
@@ -489,8 +489,4 @@ public class MigrationInvoker<T> implements MigrationClusterInvoker<T> {
     public boolean checkInvokerAvailable(ClusterInvoker<T> invoker) {
         return invoker != null && !invoker.isDestroyed() && invoker.isAvailable();
     }
-
-    public ClusterInvoker<T> getCurrentAvailableInvoker() {
-        return currentAvailableInvoker;
-    }
 }