Refactoring Tips - Tip 7
Tip 7
Remove unused Methods from code.This helps to achieve highly maintainable code
In the following snippet function Method1 is declared but not used.
Bad practice
public class A
{
private void Method1()
{
}
public void Method2()
{
}
}
Good practice
public class A
{
public void Method2()
{
}
}
I hope this helps!.
Regards,
-Vinayak