Skip to content

Commit

Permalink
ignore resolve error
Browse files Browse the repository at this point in the history
  • Loading branch information
nkbai committed Mar 8, 2023
1 parent 5e77484 commit 65344d6
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,9 @@ class MethodFieldConstCacheVisitor(
ref.resolve()
} catch (ex: Exception) {
ex.printStackTrace()
throw RuntimeException("resolve method exception,method:${ref.signature},ex=$ex")
//ignore this error, todo how to handle this error?
return
// throw RuntimeException("resolve method exception,method:${ref.signature},ex=$ex")
}
if (m == null) {
Log.logInfo("resolve method error,method:${ref.signature}")
Expand Down

0 comments on commit 65344d6

Please sign in to comment.