| Priority |
Normal |
| Type | Bug |
| State | Fixed |
| Assignee | Dmitry Jemerov |
| Subsystem | Refactoring |
| Affected versions |
No affected versions
|
| Fixed in |
No fix versions
|
| Fixed in build |
Next build |
| Build |
7718
|
| Fixed in build |
8576
|
| Severity |
0
|
IDEA-43057 |
Rename interface method breaks code: renaming method to lowercase changes only the interface and not the implementations |
|
|
public class Test implements ITest {
public void Foo() {
}
}
interface ITest {
void Foo();
}
public class Test implements ITest {
public void Foo() {
}
}
interface ITest {
void foo();
}