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
Inlines a method body into the class declaration (in a header file), or inversely moves a method's
implementation to a source file leaving the declaration in the header file.
...but this is really Move Implementation to Source File or Move Implementation to Header File which are specific to C++.
The "Move Method" tests should be moved to their appropriate C++ test cases.
The traditional Move Method refactoring involves moving a method from class A to class B, when:
"A method is, or will be, using or used by more features of another class than the class on which it is defined."
This is a holdover from the name of the refactoring in ReFactor!Pro.
The text was updated successfully, but these errors were encountered:
The source file for Move Method says:
...but this is really Move Implementation to Source File or Move Implementation to Header File which are specific to C++.
The "Move Method" tests should be moved to their appropriate C++ test cases.
The traditional Move Method refactoring involves moving a method from class A to class B, when:
This is a holdover from the name of the refactoring in ReFactor!Pro.
The text was updated successfully, but these errors were encountered: