mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Remove continuation indent on typing '@' in JavaDoc
See IDEA-179426 Javadoc @param/@return tag after @param tag with description should not be indented
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
package com.company;
|
||||
|
||||
public class Test {
|
||||
/**
|
||||
* @param a Description A
|
||||
* @param b Description B
|
||||
* <caret>
|
||||
*/
|
||||
void foo(int a, int b, int c) {}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
package com.company;
|
||||
|
||||
public class Test {
|
||||
/**
|
||||
* @param a Description A
|
||||
* @param b Description B
|
||||
* @<caret>
|
||||
*/
|
||||
void foo(int a, int b, int c) {}
|
||||
}
|
||||
Reference in New Issue
Block a user