Skip to content

Commit

Permalink
fix: NPE on method lookup (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
LisoUseInAIKyrios authored Jun 28, 2023
1 parent 72783a5 commit fcef434
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ abstract class MethodFingerprint(
append(returnTypeValue.first())
if (parameters != null) appendParameters(parameters)
}
return methodSignatureLookupMap[key]!!
return methodSignatureLookupMap[key] ?: return emptyList()
}

/**
Expand Down

0 comments on commit fcef434

Please sign in to comment.