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
NetworkImpl.NetworkImplBuilder should not allow to reassign id() because it will have no effect on the actual id.
Also, strictly speaking, close() may not see the id value if called from another thread than getId(). To ensure that, close() method should be synchronized as well as getId(). I'm not sure how relevant this is, but since getId() is synchronized itself it might be.
The text was updated successfully, but these errors were encountered:
NetworkImpl.NetworkImplBuilder should not allow to reassign
id()
because it will have no effect on the actual id.Also, strictly speaking,
close()
may not see theid
value if called from another thread thangetId()
. To ensure that,close()
method should be synchronized as well asgetId()
. I'm not sure how relevant this is, but sincegetId()
is synchronized itself it might be.The text was updated successfully, but these errors were encountered: