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 269027

Summary: Wrong formatting due to comments
Product: java Reporter: terje7601
Component: EditorAssignee: Dusan Balek <dbalek>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 8.2   
Hardware: PC   
OS: Windows 7   
Issue Type: DEFECT Exception Reporter:

Description terje7601 2016-11-18 12:56:49 UTC
The class below contains 3 identical loops, except that some have comments appended. When formatting, I'd expect the opening braces to always be before the comment, so for example:
if (i == i) { // bar
and
if (i == i) { /* bar */

Currently, the brace is either put on a new line, or appended after the comment.


public class Issue {

	public static void main(String[] args) {
		for (int i = 0; i < i; i++) // foo
			if (i == i) // bar
				i = i;
		
		for (int i = 0; i < i; i++) /* foo */
			if (i == i) /* bar */
				i = i;
		
		for (int i = 0; i < i; i++)
			if (i == i)
				i = i;
	}

}


Product Version: NetBeans IDE 8.2 (Build 201609300101)
Java: 1.8.0_91; Java HotSpot(TM) 64-Bit Server VM 25.91-b15
Runtime: Java(TM) SE Runtime Environment 1.8.0_91-b15
System: Windows 7 version 6.1 running on amd64; Cp1252; en_US (nb)