Change statisticsType to tickerType

This commit is contained in:
Ankit Gupta
2014-04-15 17:37:50 -07:00
parent 3723d08290
commit b18d914389
3 changed files with 126 additions and 3 deletions

View File

@@ -17,9 +17,9 @@ public class Statistics {
statsHandle_ = statsHandle;
}
public long getTickerCount(StatisticsType statisticsType) {
public long getTickerCount(TickerType tickerType) {
assert(isInitialized());
return getTickerCount0(statisticsType.getValue(), statsHandle_);
return getTickerCount0(tickerType.getValue(), statsHandle_);
}
private boolean isInitialized() {