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
class Base {
Base(@CheckForNull Object x) {}
}
class Derived extends Base {
Derived(@Nonnull Object x) { super(x); }
}
This should NOT generate a NP_METHOD_PARAMETER_TIGHTENS_ANNOTATION because there's no way to access the constructor of Derived as a virtual method on Base. That warning is only valid for instance methods.
The text was updated successfully, but these errors were encountered:
This should NOT generate a NP_METHOD_PARAMETER_TIGHTENS_ANNOTATION because there's no way to access the constructor of Derived as a virtual method on Base. That warning is only valid for instance methods.
The text was updated successfully, but these errors were encountered: