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:
committed by
Alexey Tsvetkov
parent
49d94f72d2
commit
493a2006f1
+1
-16
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user