This commit is contained in:
zzz
2011-07-13 14:20:20 +00:00
parent 3380ecfa28
commit 688634695d
3 changed files with 10 additions and 1 deletions

View File

@@ -170,10 +170,16 @@ public class StatManager {
}
}
/**
* Misnamed, as it returns a FrequenceyStat, not a Frequency.
*/
public FrequencyStat getFrequency(String name) {
return _frequencyStats.get(name);
}
/**
* Misnamed, as it returns a RateStat, not a Rate.
*/
public RateStat getRate(String name) {
return _rateStats.get(name);
}