mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
convert to local: skip refs in javadocs (IDEA-162003)
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
// "Convert to local variable" "true"
|
||||
class Temp {
|
||||
/**
|
||||
*/
|
||||
void foo() {
|
||||
int x = 5;
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
// "Convert to local variable" "true"
|
||||
class Temp {
|
||||
/**
|
||||
* @param x
|
||||
*/
|
||||
void foo(int <caret>x) {
|
||||
x = 5;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user