reformat on replace type args with <> (IDEA-138079)

This commit is contained in:
Anna Kozlova
2015-03-24 21:04:04 +01:00
parent c3738d4cb7
commit 4b3cebcf53
4 changed files with 48 additions and 2 deletions
@@ -0,0 +1,8 @@
// "Replace with <>" "true"
class Test<T> {
public Test(String s1, String s2) {}
Test<String> s = new Test<>("s1",
"s2");
}
@@ -0,0 +1,8 @@
// "Replace with <>" "true"
class Test<T> {
public Test(String s1, String s2) {}
Test<String> s = new Test<Str<caret>ing>("s1",
"s2");
}