in report-builder/src/jetbrains/coverage/report/impl/CoverageStatisticsBean.java [102:106]
public void incrementLines(@Nullable final Entry e) {
if (e == null || e.getTotal() <= 0) return;
incrementTotalLines(e.getTotal());
incrementCoveredLines(e.getCovered());
}