mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
explicit -> var: preserve comments
found by property testing GitOrigin-RevId: c626ca0f4039927c59e7acae5c44a38fb0d31f35
This commit is contained in:
committed by
intellij-monorepo-bot
parent
c4d7796bb2
commit
c5e8fb5b98
+2
-1
@@ -1,7 +1,8 @@
|
||||
// "Replace explicit type with 'var'" "true"
|
||||
class Main {
|
||||
{
|
||||
@Anno var args = new String[42];
|
||||
//c1
|
||||
@Anno var args = new String[42];
|
||||
}
|
||||
}
|
||||
@interface Anno {}
|
||||
+2
-1
@@ -1,7 +1,8 @@
|
||||
// "Replace explicit type with 'var'" "true"
|
||||
class Main {
|
||||
{
|
||||
@Anno <caret>String[] args = new String[42];
|
||||
@Anno <caret>String//c1
|
||||
[] args = new String[42];
|
||||
}
|
||||
}
|
||||
@interface Anno {}
|
||||
Reference in New Issue
Block a user