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
For my needs I change the class "ViewDeckController" so that it is inherited.
In the comments, it was indicated that it was sealed for WeakDelegate.
I put all the exported methods protected instead of private and it works for me.
Is there another problem that I have not seen?
The text was updated successfully, but these errors were encountered:
You are fine doing that, protected methods are work but don't always make sense from an inheritance point of view - it doesn't really make sense for a subclass to be able to call these method directly, but other than that no problems that I'm aware of.
Hi,
For my needs I change the class "ViewDeckController" so that it is inherited.
In the comments, it was indicated that it was sealed for WeakDelegate.
I put all the exported methods protected instead of private and it works for me.
Is there another problem that I have not seen?
The text was updated successfully, but these errors were encountered: