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 - Wrong formatting due to comments
Summary: Wrong formatting due to comments
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Editor (show other bugs)
Version: 8.2
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-11-18 12:56 UTC by terje7601
Modified: 2016-11-18 12:56 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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)