mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
keep spaces (IDEA-67541 )
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
// "Create Local Variable 'field'" "true"
|
||||
import java.util.*;
|
||||
class A {
|
||||
void foo(Map<String, String> s){}
|
||||
|
||||
void bar() {
|
||||
Map<String, String> field<caret>;
|
||||
foo(field);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
// "Create Local Variable 'field'" "true"
|
||||
import java.util.*;
|
||||
class A {
|
||||
void foo(Map<String, String> s){}
|
||||
|
||||
void bar() {
|
||||
foo(fie<caret>ld);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user