mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
Eliminate the insertion handler for JavaPsiClassReferenceElement because it might be confusing to the users not to be able to set the variable name themselves. In addition to that the patch also reverts the test data that was changed earlier because it was a perfectly fine piece of code and should not have been modified in the first place GitOrigin-RevId: 7046e638ed8f4c1cae72aca600fdfd06eaa3a502
8 lines
90 B
Java
8 lines
90 B
Java
|
|
class Main {
|
|
void f(Object o) {
|
|
switch(o) {
|
|
case Integer<caret>
|
|
}
|
|
}
|
|
} |