We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Select the m() method in class C, select the move method refactoring, move it to class B, and a syntax error will occur. Code before refactoring:
class B { } class A extends B { static public void m() { } } class C { B b; // move m() to B void m() { } }
Code after refactoring:
class B { // move m() to B void m() { } } class A extends B { static public void m() { } } class C { B b; }
Expected result (correct result): Give an error prompt before executing the refactoring
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Select the m() method in class C, select the move method refactoring, move it to class B, and a syntax error will occur.
Code before refactoring:
Code after refactoring:
Expected result (correct result): Give an error prompt before executing the refactoring
The text was updated successfully, but these errors were encountered: