Skip to content
Snippets Groups Projects

Partially fixed IntelliJ warnings (#361)

Merged Christopher Konkel requested to merge stu207811/theodolite_fork:Kotlin-Warning-Fixes into main
Files
7
@@ -195,9 +195,9 @@ class BenchmarkStateChecker(
}
private fun <K, V> Map<K, V>.containsMatchLabels(matchLabels: Map<V, V>): Boolean {
private fun <K, V> Map<K, V>.containsMatchLabels(matchLabels: Map<K, V>): Boolean {
for (kv in matchLabels) {
if (kv.value != this[kv.key as K]) {
if (kv.value != this[kv.key]) {
return false
}
}
Loading