Minor: rename CompilationResultSink->CompilationResults
This commit is contained in:
+2
-2
@@ -20,9 +20,9 @@ import java.io.Serializable
|
||||
import java.rmi.Remote
|
||||
import java.rmi.RemoteException
|
||||
|
||||
interface CompilationResultsSink : Remote {
|
||||
interface CompilationResults : Remote {
|
||||
@Throws(RemoteException::class)
|
||||
fun push(compilationResultCategory: Int, value: Serializable)
|
||||
fun add(compilationResultCategory: Int, value: Serializable)
|
||||
}
|
||||
|
||||
enum class CompilationResultCategory(val code: Int) {
|
||||
+1
-1
@@ -135,7 +135,7 @@ interface CompileService : Remote {
|
||||
compilerArguments: Array<String>,
|
||||
compilationOptions: CompilationOptions,
|
||||
servicesFacade: CompilerServicesFacadeBase,
|
||||
compilationResultsSink: CompilationResultsSink?
|
||||
compilationResults: CompilationResults?
|
||||
): CallResult<Int>
|
||||
|
||||
@Throws(RemoteException::class)
|
||||
|
||||
Reference in New Issue
Block a user