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 73905 - Java formatter handles annotation formatting poorly.
Summary: Java formatter handles annotation formatting poorly.
Status: RESOLVED DUPLICATE of bug 55644
Alias: None
Product: java
Classification: Unclassified
Component: Unsupported (show other bugs)
Version: 5.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@java
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-03-23 00:52 UTC by _ tball
Modified: 2007-09-26 09:14 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 _ tball 2006-03-23 00:52:36 UTC
If you have a method such as:

   @Override
   public void setVisible(boolean b) {
       super.setVisible(b);
   }

the reformatter changes it to:

   @Override
           public void setVisible(boolean b) {
       super.setVisible(b);
   }

I raised this issue from a P4 because I want to include annotations in templates.
Comment 1 Jiri Prox 2006-03-23 09:15:25 UTC

*** This issue has been marked as a duplicate of 55644 ***