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:42 UTC

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

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 46f0751  remove duplicate XxxCacheFactory.java (#600)
46f0751 is described below

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

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

diff --git a/docs/zh-cn/dev/impls/cache.md b/docs/zh-cn/dev/impls/cache.md
index 2b558d4..483b9c8 100644
--- a/docs/zh-cn/dev/impls/cache.md
+++ b/docs/zh-cn/dev/impls/cache.md
@@ -56,7 +56,7 @@ public class XxxCacheFactory implements CacheFactory {
 }
 ```
 
-XxxCacheFactory.java:
+XxxCache.java:
 
 ```java
 package com.xxx;
@@ -80,4 +80,4 @@ META-INF/dubbo/org.apache.dubbo.cache.CacheFactory:
 
 ```properties
 xxx=com.xxx.XxxCacheFactory
-```
\ No newline at end of file
+```