You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by me...@apache.org on 2020/07/09 02:43:08 UTC

[dubbo] branch master updated: add @SPI annotation (#6436)

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

mercyblitz 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 40d03b0  add @SPI annotation (#6436)
40d03b0 is described below

commit 40d03b081e8a8f74fb5092163e51bdd17842cb5a
Author: ken.lj <ke...@gmail.com>
AuthorDate: Thu Jul 9 10:42:51 2020 +0800

    add @SPI annotation (#6436)
---
 .../main/java/com/alibaba/dubbo/common/extension/ExtensionFactory.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dubbo-compatible/src/main/java/com/alibaba/dubbo/common/extension/ExtensionFactory.java b/dubbo-compatible/src/main/java/com/alibaba/dubbo/common/extension/ExtensionFactory.java
index 9c8599b..bc0f0b2 100644
--- a/dubbo-compatible/src/main/java/com/alibaba/dubbo/common/extension/ExtensionFactory.java
+++ b/dubbo-compatible/src/main/java/com/alibaba/dubbo/common/extension/ExtensionFactory.java
@@ -16,7 +16,10 @@
  */
 package com.alibaba.dubbo.common.extension;
 
+import org.apache.dubbo.common.extension.SPI;
+
 @Deprecated
+@SPI
 public interface ExtensionFactory extends org.apache.dubbo.common.extension.ExtensionFactory {
 
 }