suggest implements->extends for interfaces hierarchy (IDEA-89867)

This commit is contained in:
Anna Kozlova
2012-09-14 14:54:25 +04:00
parent fd644a7299
commit da098b2a31
3 changed files with 19 additions and 1 deletions
@@ -0,0 +1,4 @@
// "Change 'implements Runnable' to 'extends Runnable'" "true"
interface a extends Runnable {
}
@@ -0,0 +1,4 @@
// "Change 'implements Runnable' to 'extends Runnable'" "true"
interface a implements <caret>Runnable {
}