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:
Anna.Kozlova
2018-11-06 19:00:02 +01:00
parent b7c8e98770
commit 316f8bfc63
3 changed files with 14 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
// "Change 'implements b' to 'extends b'" "true"
class a extends b<String, Integer> {
}
class b<T, K> {}

View File

@@ -0,0 +1,5 @@
// "Change 'implements b' to 'extends b'" "true"
class a implements <caret>b<String, Integer> {
}
class b<T, K> {}