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
Decorator B static imports method from Decorator A.
Refactor Decorator A by moving static method to other class or just remove the method completely.
Compiler will now yield error as base decorator classes don't get generated. This is misleading as the reason for this failure is wrong static method import whereas all we get from the logs is error about decorator classes not being present. This is not helpful at all and you have to spend significant amounts of time to figure our where the problem lies.
Solution, if feasible, would be to always force generate base classes even if imports are incorrect, that way we can trace and fix errors more quickly.
The text was updated successfully, but these errors were encountered:
One of steps to repro:
Solution, if feasible, would be to always force generate base classes even if imports are incorrect, that way we can trace and fix errors more quickly.
The text was updated successfully, but these errors were encountered: