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 255638

Summary: package-level annotations not formatted properly
Product: editor Reporter: onacit <onacit>
Component: Formatting & IndentationAssignee: Dusan Balek <dbalek>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 8.0.2   
Hardware: PC   
OS: Windows 8 x64   
Issue Type: DEFECT Exception Reporter:

Description onacit 2015-10-01 08:28:54 UTC
Whenever I put two ore more annotation on a package declaration and format, those annotations appended in a single line.

````
@XmlAccessorType(XmlAccessType.NONE)
@XmlSchema(
)
````

always formatted like this.

````
@XmlAccessorType(XmlAccessType.NONE) @XmlSchema(
)

````