Minor: removed clear method from DirtyOutputClassesMap

It's already has clean method from BasicMap
This commit is contained in:
Alexey Tsvetkov
2015-07-23 22:48:11 +03:00
parent 701585c0b6
commit f2295676bf
@@ -252,7 +252,7 @@ public class IncrementalCacheImpl(targetDataRoot: File) : StorageOwner, Incremen
constantsMap.remove(className)
inlineFunctionsMap.remove(className)
}
dirtyOutputClassesMap.clear()
dirtyOutputClassesMap.clean()
return recompilationDecision
}
@@ -732,10 +732,6 @@ public class IncrementalCacheImpl(targetDataRoot: File) : StorageOwner, Incremen
return storage.getAllKeysWithExistingMapping()
}
public fun clear() {
storage.getAllKeysWithExistingMapping().forEach { storage.remove(it) }
}
override fun dumpValue(value: Boolean) = ""
}