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:
Rustam Vishnyakov
2018-01-30 19:12:28 +03:00
parent aa25cdee3d
commit ae93ef0bdc
4 changed files with 51 additions and 8 deletions
@@ -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) {}
}
@@ -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) {}
}