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
These functions create new instances rather than changing the internal state, e.g. stub.withCallCredentials( ... )
is wrong. One should always use stub = stub.withCallCredentials( ... )
Static analyzers will fail if the value is not checked, which is likely extremely high at this point. While the code is probably buggy, I don't think it can reasonably be fixed at this point.
These functions create new instances rather than changing the internal state, e.g.
stub.withCallCredentials( ... )
is wrong. One should always use
stub = stub.withCallCredentials( ... )
grpc-java/stub/src/main/java/io/grpc/stub/AbstractStub.java
Line 48 in c90f27f
The text was updated successfully, but these errors were encountered: