This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 201272

Summary: Format is adding unnecessary * to comments
Product: editor Reporter: Milutin Kristofic <mkristofic>
Component: Formatting & IndentationAssignee: Dusan Balek <dbalek>
Status: RESOLVED FIXED    
Severity: normal    
Priority: P2    
Version: 7.0   
Hardware: PC   
OS: Linux   
Issue Type: DEFECT Exception Reporter:

Description Milutin Kristofic 2011-08-24 09:58:29 UTC
I miss a fixed point with Auto-format in the following scenario 

Steps:
1. Make a new class
package javaapplication1;

/**
 * This is an implementation of a Firefox(TM) style Incremental Search Side Bar.
 * @author Sandip V. Chitale (Sandip.Chitale@Sun.Com)
 */
public class JavaApplication1 {

    public static void main(String[] args) {
    }
}


2. Alt+Shift+F
/**
 * This is an implementation of a Firefox(TM) style Incremental Search Side Bar.
 *
 * @author Sandip V. Chitale (Sandip.Chitale@Sun.Com)
 */

3. Alt+Shift+F
/**
 * This is an implementation of a Firefox(TM) style Incremental Search Side Bar.
 *  *
 * @author Sandip V. Chitale (Sandip.Chitale@Sun.Com)
 */

4. Alt+Shift+F
/**
 * This is an implementation of a Firefox(TM) style Incremental Search Side Bar.
 * * @author Sandip V. Chitale (Sandip.Chitale@Sun.Com)
 */

5.etc
Comment 1 Dusan Balek 2011-09-01 11:49:20 UTC
Fixed in jet-main.

http://hg.netbeans.org/jet-main/rev/e6827a13c130