Deprecate unused StatLog

This commit is contained in:
zzz
2019-06-24 14:33:56 +00:00
parent c1418a1c2e
commit d8e06a0d14
5 changed files with 8 additions and 10 deletions

View File

@ -18,6 +18,9 @@ import net.i2p.util.Log;
/**
* Note - if no filter is defined in stat.logFilters at startup, this class will not
* be instantiated - see StatManager.
*
* Deprecated - unused - to be removed.
* Not for external use - not a public API.
*/
public class BufferedStatLog implements StatLog {
private final I2PAppContext _context;

View File

@ -38,6 +38,11 @@ public class RateStat {
_rates[i] = rate;
}
}
/**
* Sets the default stat log for this RateStat.
* Deprecated, unused, to be disabled in a future release.
*/
public void setStatLog(StatLog sl) { _statLog = sl; }
/**