SalesforceFoundation / ApexDoc

The latest java source for ApexDoc, a tool to document your Salesforce Apex classes.
BSD 3-Clause "New" or "Revised" License
229 stars 128 forks source link

Multi-line comments skipped if multiple spaces follow asterisk #67

Open tet3 opened 7 years ago

tet3 commented 7 years ago

Given a comment like:

    /*******************************************************************************************************
    * @description Returns the default TDTM configuration.
    * @return List<Trigger_Handler__c> a list of trigger handler records with the default values. The records
    *         have not yet been inserted in the database. You can manipulate them, if necessary, and insert
    *         them. If no Trigger_Handler__c records exist, the application will insert the defaults when any
    *         of the NPSP triggers run.
    */

The ApexDoc will stop at the end of the first @return line:

2017-03-02-developer salesforce org_cumulus_apexdocumentation_tdtm_defaultconfig html getde

It should include lines with leading asterisks regardless of following whitespace.