You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by il...@apache.org on 2020/08/06 06:31:58 UTC

[dubbo-website] branch master updated: remove duplicate XxxCacheFactory.java (#599)

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-website.git


The following commit(s) were added to refs/heads/master by this push:
     new f7100d3  remove duplicate XxxCacheFactory.java (#599)
f7100d3 is described below

commit f7100d3874cb48531622775d2cab7eba22b553ab
Author: shaoshuai <st...@gmail.com>
AuthorDate: Thu Aug 6 14:31:50 2020 +0800

    remove duplicate XxxCacheFactory.java (#599)
    
    XxxCacheFactory.java is duplicate, change XxxCacheFactory.java to XxxCache.java
---
 docs/en-us/dev/impls/cache.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/en-us/dev/impls/cache.md b/docs/en-us/dev/impls/cache.md
index f7e677e..40a62b7 100644
--- a/docs/en-us/dev/impls/cache.md
+++ b/docs/en-us/dev/impls/cache.md
@@ -57,7 +57,7 @@ public class XxxCacheFactory implements CacheFactory {
 }
 ```
 
-XxxCacheFactory.java:
+XxxCache.java:
 
 ```java
 package com.xxx;
@@ -81,4 +81,4 @@ META-INF/dubbo/org.apache.dubbo.cache.CacheFactory:
 
 ```properties
 xxx=com.xxx.XxxCacheFactory
-```
\ No newline at end of file
+```