assdfsdafasfa

Results 15 issues of assdfsdafasfa

### Apache NetBeans version Apache NetBeans 23 ### What happened When the "methodToBeRenamed()" method is selected for the rename method refactoring,code before refactoring, the "methodToBeRenamed()" method in the "ParentClass" is...

kind:bug
needs:triage

### Apache NetBeans version Apache NetBeans 23 ### What happened When the m() method in the selection class C performs a move method refactoring into A.B, resulting in a change...

kind:bug
Java
needs:triage

### Apache NetBeans version Apache NetBeans 23 ### What happened When test() is selected to perform pull down refactoring into class A, before refactoring, test() method calls method() of class...

kind:bug
Java
needs:triage

Error: InnerClass cannot be resolved to a type Before refactoring: ```java public class SourceClass { TargetClass targetClass; public void methodToBeMoved() { targetClass.m1(); targetClass.m2(); InnerClass innerClass = new InnerClass(); innerClass.innerMethod(); }...

When using a tool to detect Feature Envy and perform automated refactoring, if the refactored code contains syntax errors, should I attempt to fix them manually? Before Refactoring: ```java public...