You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by GitBox <gi...@apache.org> on 2018/07/25 12:55:51 UTC

[GitHub] carryxyh edited a comment on issue #334: dubbo LruCache 错误

carryxyh edited a comment on issue #334: dubbo LruCache 错误
URL: https://github.com/apache/incubator-dubbo/issues/334#issuecomment-407743234
 
 
   public class LRUCache<K, V> extends LinkedHashMap<K, V> {
       public LRUCache(int maxCapacity) {
           super(16, DEFAULT_LOAD_FACTOR, true);
           this.maxCapacity = maxCapacity;
       }
   }
   
   This issue has been fixed.
   
   &READY-TO-CLOSE&

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org