in report-builder/src/jetbrains/coverage/report/impl/CoverageStatisticsBean.java [96:100]
public void incrementBlocks(@Nullable final Entry e) {
if (e == null || e.getTotal() <= 0) return;
incrementTotalBlocks(e.getTotal());
incrementCoveredBlocks(e.getCovered());
}