Closed abrookins closed 8 years ago
/** * 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.
This should be fixed by a change I made to resolve #16.
STR
Select line 02 (" * Let's provide..."), then Action "Wrap to Column".
Result:
It removes "#" from inside the @link tag, breaking the javadoc.