in Sources/MockoloFramework/Utils/FileScanner.swift [38:46]
func concurrencyLimit(_ numThreads: Int?) -> Int {
var limit = 1
if let n = numThreads {
limit = n
} else if let n = scanConcurrencyLimit {
limit = n
}
return limit
}