}
@NotNull
private static ProjectData readProjectData(@NotNull File dataFile, @NotNull File basePath) throws IOException {
ProjectData projectData = new ProjectData();
LcovCoverageReport report = CoverageSerializationUtils.readLCOV(basePath, dataFile);
for (Map.Entry<String, List<LcovCoverageReport.LineHits>> entry : report.getInfo().entrySet()) {
String filePath = SimpleCoverageAnnotator.getFilePath(entry.getKey());
ClassData classData = projectData.getOrCreateClassData(filePath);
int max = 0;
List<LcovCoverageReport.LineHits> lineHitsList = entry.getValue();
if (lineHitsList.size() > 0) {