Remove unused SimpleDirtyData from incremental compilation

This is not used any more and all information about
the changed symbols and fqNames is passed alongside artifacts.
This commit is contained in:
Ivan Gavrilovic
2019-03-21 12:04:04 +00:00
committed by Alexey Tsvetkov
parent 49d94f72d2
commit 493a2006f1
2 changed files with 1 additions and 51 deletions
@@ -60,19 +60,4 @@ interface IncrementalCompilationServicesFacade : Remote {
@Throws(RemoteException::class)
fun revert()
// ChangesRegistry
@Throws(RemoteException::class)
fun registerChanges(timestamp: Long, dirtyData: SimpleDirtyData)
@Throws(RemoteException::class)
fun unknownChanges(timestamp: Long)
@Throws(RemoteException::class)
fun getChanges(artifact: File, sinceTS: Long): Iterable<SimpleDirtyData>?
}
class SimpleDirtyData(
val dirtyLookupSymbols: List<String>,
val dirtyClassesFqNames: List<String>
) : Serializable
}