Skip to content

Commit

Permalink
fix: MethodSignature#resolved throwing an exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Sculas committed Apr 14, 2022
1 parent fd630cd commit 82b1e66
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -30,7 +30,11 @@ class MethodSignature(
}
val resolved: Boolean
get() {
return result != null
var resolved = false
try {
resolved = result != null
} catch (_: Exception) {}
return resolved
}
}

Expand Down

0 comments on commit 82b1e66

Please sign in to comment.