JDeodorant
JDeodorant copied to clipboard
JDeodorant
I inspect the class "Network" using JDeodorant's God Class option and JDeodorant shows a refactoring opportunity. I refactor using it but then after the refactoring, the code shows compilation errors....
Hi there I want to add a feature for myself and I don't know how to contribute to this project. Can you provide me with a guide about how to...
I recently run NiCad 4 on a project and tried to import the results into JDeodorant for refactoring, and ran into `ICompilationUnitNotFound` exceptions. Apparently this is because NiCad 3 reported...
Hi author, I faced a problem in refactoring projects using JDeodorant. I wanted to test JDeodorant on Java1.8 projects. I installed JDeodorant using Eclipse marketplace with version 2024-06R. However, it...
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...