You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Checkerframework now complains in my Maven build that access to this.proxyData.port/username/password in the if expression deference a possibly-null reference this.proxyData:
Checker Framework 3.48.4
Java 21
I have the following snippet inside my code:
this.proxyData
is later processed inside a lambda expression in the following method:Checkerframework now complains in my Maven build that access to
this.proxyData.port/username/password
in the if expression deference a possibly-null referencethis.proxyData
:This shouldn't happen because a) there's an explicit check for !=null, and b) the erroneous lines happen after
this.proxyData.host
is accessed.The text was updated successfully, but these errors were encountered: