Skip to content

Commit

Permalink
Merge pull request #140 from kitakkun/fix/crash_on_capture_null
Browse files Browse the repository at this point in the history
Fix null value captures causing crashses
  • Loading branch information
kitakkun authored Dec 30, 2024
2 parents ba4597c + f1e2d15 commit ed597e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package com.kitakkun.backintime.core.runtime.internal
import com.kitakkun.backintime.core.runtime.BackInTimeDebuggable

@BackInTimeCompilerInternalApi
internal fun <T : Any> captureThenReturnValue(
internal fun <T : Any?> captureThenReturnValue(
instance: BackInTimeDebuggable,
ownerClassFqName: String,
methodInvocationId: String,
Expand Down

0 comments on commit ed597e8

Please sign in to comment.