Skip to content

Commit

Permalink
fix(core): Fixing number of marked resources counter (#305)
Browse files Browse the repository at this point in the history
- updated to not count all marked resources from the database
  • Loading branch information
jeyrschabu authored and mergify[bot] committed Nov 21, 2019
1 parent 3329637 commit bcbedf4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ abstract class AbstractResourceTypeHandler<T : Resource>(
violationCounter,
candidateCounter,
totalResourcesVisitedCounter,
resourceRepository.getNumMarkedResources()
markedResources.size.toLong()
)
}
}
Expand Down

0 comments on commit bcbedf4

Please sign in to comment.