ouniali / flexible-refactoring-tools

Automatically exported from code.google.com/p/flexible-refactoring-tools
1 stars 0 forks source link

BeneFactor confused by identical variable names in two different methods #42

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
If you rename the second var, the first one is renamed with benefactor:

public class LittleClass {

    public void m1(){
        int i = 0;
    }

    public void m2(){
        int i = 0;//rename this one
    }
}

Original issue reported on code.google.com by captain....@gmail.com on 28 Oct 2011 at 5:04

GoogleCodeExporter commented 9 years ago

Original comment by xge.nc...@gmail.com on 13 Nov 2011 at 8:36