Removed debug code

This commit is contained in:
nathan 2020-08-23 19:23:26 +02:00
parent a17b9b95ff
commit 2faba6dcb4

View File

@ -370,7 +370,7 @@ internal class RmiManagerGlobal<CONNECTION : Connection>(logger: KLogger,
var insideResult: Any? var insideResult: Any?
try { try {
// args!! is safe to do here (even though it doesn't make sense) // args!! is safe to do here (even though it doesn't make sense)
// insideResult = cachedMethod.invoke(connection, implObject, args) insideResult = cachedMethod.invoke(connection, implObject, args)
} catch (ex: Exception) { } catch (ex: Exception) {
insideResult = ex.cause insideResult = ex.cause
// added to prevent a stack overflow when references is false, (because 'cause' == "this"). // added to prevent a stack overflow when references is false, (because 'cause' == "this").
@ -383,8 +383,7 @@ internal class RmiManagerGlobal<CONNECTION : Connection>(logger: KLogger,
insideResult.initCause(null) insideResult.initCause(null)
} }
} }
// insideResult insideResult
Exception(":ASDASDUJHAKDSGJFHAKHDLA")
} }
@ -396,8 +395,7 @@ internal class RmiManagerGlobal<CONNECTION : Connection>(logger: KLogger,
// kotlin suspend returns, that DO NOT have a return value, REALLY return kotlin.Unit. This means there is no // kotlin suspend returns, that DO NOT have a return value, REALLY return kotlin.Unit. This means there is no
// return value! // return value!
suspendResult = null suspendResult = null
} } else if (suspendResult is Exception) {
else if (suspendResult is Exception) {
RmiUtils.cleanStackTraceForImpl(suspendResult, true) RmiUtils.cleanStackTraceForImpl(suspendResult, true)
val fancyName = RmiUtils.makeFancyMethodName(cachedMethod) val fancyName = RmiUtils.makeFancyMethodName(cachedMethod)