Skip to content

Commit 2a358a0

Browse files
Fixed counting of processed commits
1 parent b0db4d4 commit 2a358a0

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/main/java/de/variantsync/subjects/extraction/AnalysisTask.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ public void run() {
8686
for (RevCommit commit : commits) {
8787
if (processedCommits.contains(commit.getName())) {
8888
LOGGER.logStatus("Skipping " + commit.getName() + " as it was already processed.");
89+
count++;
8990
continue;
9091
}
9192
LOGGER.logStatus("Started analysis of commit " + commit.getName() + " in task #" + taskName);

0 commit comments

Comments
 (0)