mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
change extends <-> implements: ensure resulted list is formatted (IDEA-201751)
lists are created from light elements which are created from canonical texts and they just do not contain whitespaces
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
// "Change 'implements b' to 'extends b'" "true"
|
||||
class a extends b<String, Integer> {
|
||||
}
|
||||
|
||||
class b<T, K> {}
|
||||
@@ -0,0 +1,5 @@
|
||||
// "Change 'implements b' to 'extends b'" "true"
|
||||
class a implements <caret>b<String, Integer> {
|
||||
}
|
||||
|
||||
class b<T, K> {}
|
||||
Reference in New Issue
Block a user