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
(This one is nicked from fb-contrib). Lint expressions of the kind
(method)call &&/|| (no method call) {==, !=} (no method call)
e.g. potentially_expensive_check() && a == b
And suggest to reorder the subexpressions to possibly improve performance. Note that this may change behavior if potentially_expensive_check() has side effects.
The text was updated successfully, but these errors were encountered:
(This one is nicked from fb-contrib). Lint expressions of the kind
(method)call &&/|| (no method call) {==, !=} (no method call)
e.g.
potentially_expensive_check() && a == b
And suggest to reorder the subexpressions to possibly improve performance. Note that this may change behavior if
potentially_expensive_check()
has side effects.The text was updated successfully, but these errors were encountered: