abrookins/WrapToColumn

Javadoc asterisk prefix characters removed on paragraph format.

jtroussard opened this issue · 1 comments

Executing the "Wrap paragraph to column" on Javadocs within a method appear to delete the javadoc line identifiers.

Example

Before

    @Override
    public boolean standardMethod(int number, String string) throws ServiceException {
        try {
            /** This section of code is to determine the standardMethod behavior as it relates to AwesomeFeature. The
             * {@link package#AwesomeFeature.Implementation#getAwesomeFeatureGetAuditCode(int, String)}
             * will perform varies checks to determine what the user is intending to do and which values those related
             * system variables are set to. If Awesome Feature is being attempted it will be reflected in the Reason Audit Code.
             * If Awesome Feature is being attempted, and the reason code returned from the determination method is {@link ReasonEnum#FT_SKIPPING}
             * the attempt was successful. {@link #standardMethod(int, String)} simply returns
             * FALSE, resulting in the RandomObject skipping the super inpsection work flow step (under the Awesome Feature feature). All other reason codes will result in the code dropping
             * down further into the method which will consider the olderButStillimportant feature.
             */

After

    @Override public boolean standardMethod(int number, String string) throws ServiceException { try { This section of
    code is to determine the standardMethod behavior as it relates to AwesomeFeature. The {@link
    package#AwesomeFeature.Implementation#getAwesomeFeatureGetAuditCode(int, String)} will perform varies checks to
    determine what the user is intending to do and which values those related system variables are set to. If Awesome
    Feature is being attempted it will be reflected in the Reason Audit Code. If Awesome Feature is being attempted, and
    the reason code returned from the determination method is {@link ReasonEnum#FT_SKIPPING} the attempt was successful.
    {@link #standardMethod(int, String)} simply returns FALSE, resulting in the RandomObject skipping the super
    inpsection work flow step (under the Awesome Feature feature). All other reason codes will result in the code
    dropping down further into the method which will consider the olderButStillimportant feature.
             */

Should be fixed in 1.7.0, now published to the Plugins Marketplace.