Remove IntegrationNode.Stats.deprecated const

This commit is contained in:
Artem Bilan
2019-09-22 09:34:48 -04:00
parent a550ebfaad
commit 21335812a3

View File

@@ -109,14 +109,12 @@ public abstract class IntegrationNode {
public static class Stats {
private static final String deprecated = "stats are deprecated in favor of sendTimers and receiveCounters";
protected boolean isAvailable() {
return false;
}
public String getDeprecated() {
return deprecated;
return "stats are deprecated in favor of sendTimers and receiveCounters";
}
}