Correct geHistogramData() -> getHistogramData() (#1257)

This commit is contained in:
Adam Retter 2016-08-05 04:16:16 +01:00 committed by Igor Canadi
parent f35b16f246
commit 9253767a6a

View File

@ -231,11 +231,11 @@ public class RocksDBSample {
try {
for (HistogramType histogramType : HistogramType.values()) {
HistogramData data = stats.geHistogramData(histogramType);
HistogramData data = stats.getHistogramData(histogramType);
}
System.out.println("geHistogramData() passed.");
System.out.println("getHistogramData() passed.");
} catch (Exception e) {
System.out.println("Failed in call to geHistogramData()");
System.out.println("Failed in call to getHistogramData()");
assert (false); //Should never reach here.
}