restore comments on removing redundant cast

This commit is contained in:
Anna Kozlova
2018-09-27 13:57:12 +02:00
parent e9f7052f45
commit 3366ae8733
12 changed files with 61 additions and 38 deletions
@@ -1,6 +1,7 @@
// "Remove redundant cast(s)" "true"
class Test {
{
String s = "" + (1 + 2);
//c1
String s = "" + (1 + 2);
}
}
@@ -1,6 +1,7 @@
// "Remove redundant cast(s)" "true"
class Test {
{
String s = "" + (in<caret>t) (1 + 2);
String s = "" + (in<caret>t)//c1
(1 + 2);
}
}