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 209885 - Incorrectly formated separators between terms of expression
Summary: Incorrectly formated separators between terms of expression
Status: NEW
Alias: None
Product: groovy
Classification: Unclassified
Component: Editor (show other bugs)
Version: 7.1
Hardware: PC Linux
: P4 normal (vote)
Assignee: Martin Janicek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-03-21 16:34 UTC by Martin Janicek
Modified: 2012-03-21 16:34 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 Martin Janicek 2012-03-21 16:34:24 UTC
Have following content in groovy file and try to invoke format action:

boolean a=true;
boolean b =true;
boolean c= true;

==> Actual:
No change after formatting file.

==> Expected: 
boolean a = true;
boolean b = true;
boolean c = true;