Can strip text that looks like a comment symbol
Closed this issue · 1 comments
abrookins commented
STR
/**
* Let's provide a javadoc comment the has a link to some method, e.g. {@link #m()}.
*/
public class WrapToColumn {
public static void m() { }
}
Select line 02 (" * Let's provide..."), then Action "Wrap to Column".
Result:
/**
* Let's provide a javadoc comment the has a link to some method, e.g. {@link
* m()}.
*/
public class WrapToColumn {
public static void m() { }
}
It removes "#" from inside the @link tag, breaking the javadoc.