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 - package-level annotations not formatted properly
Summary: package-level annotations not formatted properly
Status: NEW
Alias: None
Product: editor
Classification: Unclassified
Component: Formatting & Indentation (show other bugs)
Version: 8.0.2
Hardware: PC Windows 8 x64
: P3 normal (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-10-01 08:28 UTC by onacit
Modified: 2015-10-01 08:28 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 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(
)

````