convert to local: skip refs in javadocs (IDEA-162003)

This commit is contained in:
Anna.Kozlova
2016-10-10 14:19:25 +02:00
parent 15f8ea20fe
commit 6d148ad453
3 changed files with 18 additions and 0 deletions
@@ -0,0 +1,8 @@
// "Convert to local variable" "true"
class Temp {
/**
*/
void foo() {
int x = 5;
}
}
@@ -0,0 +1,9 @@
// "Convert to local variable" "true"
class Temp {
/**
* @param x
*/
void foo(int <caret>x) {
x = 5;
}
}