Used versions:
IntelliJ: 2017.2 RC2 (172.3317.53)
Plugin version: 17.0.132.637.1
Steps to reproduce:
- Have a Java type with Javadoc
- Place caret in first line (directly after
/** )
- Hit enter
Symptom: Whitespace before the asterisk in the next line is removed
Expected behavior: Use same indentation as the first line.
Looks like:
Before hitting enter:
/**
*
*/
public interface MyClass {}
After:
/**
*
*
*/
public interface MyClass {}
Used versions:
IntelliJ: 2017.2 RC2 (172.3317.53)
Plugin version: 17.0.132.637.1
Steps to reproduce:
/**)Symptom: Whitespace before the asterisk in the next line is removed
Expected behavior: Use same indentation as the first line.
Looks like:
Before hitting enter:
After: