cleanup 'public' modifier from the interface on "pull default method" (IDEA-135292)

This commit is contained in:
Anna Kozlova
2015-01-19 12:06:50 +01:00
parent e39377d449
commit d60840ee4f
2 changed files with 2 additions and 1 deletions
@@ -3,5 +3,5 @@ interface Bar<T> { }
interface Base<T> { }
class Foo<T,U> implements Base<U> {
void ge<caret>t(Bar<U> bar) { }
public void ge<caret>t(Bar<U> bar) { }
}