This is an automated email from the ASF dual-hosted git repository.
iluo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo.git
The following commit(s) were added to refs/heads/master by this push:
new 22670b2
issue#4570:RegistryProtocol.DestroyableExporter_modifiers_order (#4583)
22670b2 is described below
commit 22670b23a5e029d69e42dfcf5130d3cc7c0af848
Author: AnthonyKot <[email protected]>
AuthorDate: Wed Jul 17 04:26:32 2019 +0200
issue#4570:RegistryProtocol.DestroyableExporter_modifiers_order (#4583)
---
.../java/org/apache/dubbo/registry/integration/RegistryProtocol.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/dubbo-registry/dubbo-registry-api/src/main/java/org/apache/dubbo/registry/integration/RegistryProtocol.java
b/dubbo-registry/dubbo-registry-api/src/main/java/org/apache/dubbo/registry/integration/RegistryProtocol.java
index b9ad1b3..114635b 100644
---
a/dubbo-registry/dubbo-registry-api/src/main/java/org/apache/dubbo/registry/integration/RegistryProtocol.java
+++
b/dubbo-registry/dubbo-registry-api/src/main/java/org/apache/dubbo/registry/integration/RegistryProtocol.java
@@ -478,7 +478,7 @@ public class RegistryProtocol implements Protocol {
}
}
- static private class DestroyableExporter<T> implements Exporter<T> {
+ private static class DestroyableExporter<T> implements Exporter<T> {
private Exporter<T> exporter;