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
Describe the bug
When we are going to convert a static field/method to a non-static one, we must change all static usages. For instance, ClassName.field should be converted to new ClassName().field
The text was updated successfully, but these errors were encountered:
Describe the bug
When we are going to convert a static field/method to a non-static one, we must change all static usages. For instance,
ClassName.field
should be converted tonew ClassName().field
The text was updated successfully, but these errors were encountered: