Merge pull request #70 from SeanCai/master

do not use forEach of jdk1.8
pull/196/head^2
SeanCai 8 years ago committed by GitHub
commit fc203e7953

@ -41,8 +41,8 @@ object InspectionResults {
fun clear() { fun clear() {
fileViolations.forEach { t, u -> fileViolations.forEach {
MarkerUtil.removeAllMarkers(t) MarkerUtil.removeAllMarkers(it.key)
} }
fileViolations.clear() fileViolations.clear()
// update contentDescription // update contentDescription
@ -99,4 +99,4 @@ object InspectionResults {
"${map[RulePriority.Critical.title]?.count ?: 0} Criticals," + "${map[RulePriority.Critical.title]?.count ?: 0} Criticals," +
"${map[RulePriority.Major.title]?.count ?: 0} Majors" "${map[RulePriority.Major.title]?.count ?: 0} Majors"
} }
} }

Loading…
Cancel
Save