-
Type:
Bug
-
Status: Closed
-
Resolution: Fixed
-
Affects Version/s: Master
-
Fix Version/s: 7.0.0 DXP FP46, 7.0.6 CE GA7, 7.0.0 DXP SP8, Master
-
Component/s: Dev Tools > Source Formatter
-
Epic Link:
When class contains the following:
import java.util.Date;
...
/**
* @see java.util.Date
*/
Expected result:
SourceFormatter strips the import, but leaves the javadoc as is:
/** * @see java.util.Date */
Actual result:
SourceFormatter strips the import and strips package from the javadoc:
/** * @see Date */