mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
AddJavadocIntention: disable at field initializers
Add JavaDoc was available at initializer in some rare cases, e.g. "String foo = b<caret>ar;" (initializer is a simple reference), which was inconsistent and confusing (will the action add JavaDoc to "foo" or to "bar"?
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// "Add Javadoc" "false"
|
||||
|
||||
class Test {
|
||||
|
||||
String foo = "xyz";
|
||||
String bar = f<caret>oo;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user