dweiss commented on issue #14257:
URL: https://github.com/apache/lucene/issues/14257#issuecomment-2756943569

   It'll work with those indented lines as well - it actually will align block 
indentation to the column they should be starting at. So:
   ```
       /// [Collector] for cutter+recorder pair. NOCOMMIT: This is a long line 
comment that should not be broken into smaller chunks.
       ///   * also, the space after /// should be preserved
       ///   * like here.
     public FacetFieldCollector(FacetCutter facetCutter, FacetRecorder 
facetRecorder) {
       this.facetCutter = facetCutter;
       this.facetRecorder = facetRecorder;
     }
   ```
   ends up this after running tidy:
   ```
     /// [Collector] for cutter+recorder pair. NOCOMMIT: This is a long line 
comment that should not be broken into smaller chunks.
     ///   * also, the space after /// should be preserved
     ///   * like here.
     public FacetFieldCollector(FacetCutter facetCutter, FacetRecorder 
facetRecorder) {
       this.facetCutter = facetCutter;
       this.facetRecorder = facetRecorder;
     }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org

Reply via email to