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
Extension classes are not meant to be instantiated. A private no-arguments constructor could be automatically generated to prevent instantiation and reduce boilerplate code to write it manually.
Implementation note: To avoid breaking existing behavior, the private constructor should only be generated if the class does not already define any constructors.
The text was updated successfully, but these errors were encountered:
Extension classes are not meant to be instantiated. A private no-arguments constructor could be automatically generated to prevent instantiation and reduce boilerplate code to write it manually.
Implementation note: To avoid breaking existing behavior, the private constructor should only be generated if the class does not already define any constructors.
The text was updated successfully, but these errors were encountered: