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
Description
Reduce or remove extra class instances in the plugin. Some classes may be instantiated multiple times unnecessarily, leading to complexity and confusion.
Why This Matters
Simplifies the code structure, making it easier to maintain and test.
Aligns with best practices for singleton usage and code clarity.
Tasks
Audit new ClassName() calls throughout the code.
Consolidate or remove superfluous instances.
Ensure no existing features or flows break after changes.
The text was updated successfully, but these errors were encountered:
Description
Reduce or remove extra class instances in the plugin. Some classes may be instantiated multiple times unnecessarily, leading to complexity and confusion.
Why This Matters
Tasks
new ClassName()
calls throughout the code.The text was updated successfully, but these errors were encountered: