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
When a single file has several problems of the same type, the compiler offers us to apply a solution on all similar problems. For example, with missing @Override annotations:
we don't have "fix 3 problems of the same category in file".
Furthermore, selecting all similar problems in the Problems view, right clicking, and selecting Quick Fix (ctrl-1) shows the following dialog for the @Override example:
But for my example with the missing methods, you get a message saying that there's no common quick fix:
There are common quick fixes. The dialog should be shown with the 2 options shown above (create a method and cast) under "Select a fix".
Using Eclipse 4.31.
The text was updated successfully, but these errors were encountered:
When a single file has several problems of the same type, the compiler offers us to apply a solution on all similar problems. For example, with missing
@Override
annotations:However, in the following example:
we don't have "fix 3 problems of the same category in file".
Furthermore, selecting all similar problems in the Problems view, right clicking, and selecting Quick Fix (ctrl-1) shows the following dialog for the
@Override
example:But for my example with the missing methods, you get a message saying that there's no common quick fix:
There are common quick fixes. The dialog should be shown with the 2 options shown above (create a method and cast) under "Select a fix".
Using Eclipse 4.31.
The text was updated successfully, but these errors were encountered: