public double getStyleRecalculationDuration() {
return styleRecalculationDuration;
}
private void calcSelfTime() throws JsonException {
SelfTimeVisitor selfTimeVisitor = new SelfTimeVisitor();
for (int i = 0, length = records.getLength(); i < length; ++i) {
JsonObject record = records.get(i).asObject();
JsonTraverser.get().traverse(record, selfTimeVisitor);
}
}