You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ratis.apache.org by ru...@apache.org on 2021/01/27 03:44:35 UTC

[incubator-ratis] branch master updated: RATIS-1296. Remove System.out.println() from RetryCacheImpl (#403)

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

runzhiwang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ratis.git


The following commit(s) were added to refs/heads/master by this push:
     new 7b5825f  RATIS-1296. Remove System.out.println() from RetryCacheImpl (#403)
7b5825f is described below

commit 7b5825ff8d9f51218e2406e3410b4a83247867c4
Author: Elek, Márton <el...@users.noreply.github.com>
AuthorDate: Wed Jan 27 04:44:26 2021 +0100

    RATIS-1296. Remove System.out.println() from RetryCacheImpl (#403)
---
 .../src/main/java/org/apache/ratis/server/impl/RetryCacheImpl.java       | 1 -
 1 file changed, 1 deletion(-)

diff --git a/ratis-server/src/main/java/org/apache/ratis/server/impl/RetryCacheImpl.java b/ratis-server/src/main/java/org/apache/ratis/server/impl/RetryCacheImpl.java
index 5f7c4d3..438315e 100644
--- a/ratis-server/src/main/java/org/apache/ratis/server/impl/RetryCacheImpl.java
+++ b/ratis-server/src/main/java/org/apache/ratis/server/impl/RetryCacheImpl.java
@@ -121,7 +121,6 @@ class RetryCacheImpl implements RetryCache {
     StatisticsImpl(Cache<?, ?> cache) {
       this.size = cache.size();
       this.cacheStats = cache.stats();
-      System.out.println("new StatisticsImpl " + this);
     }
 
     boolean isExpired() {