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

Summary: Incorrectly formated separators between terms of expression
Product: groovy Reporter: Martin Janicek <mjanicek>
Component: EditorAssignee: Martin Janicek <mjanicek>
Status: NEW ---    
Severity: normal    
Priority: P4    
Version: 7.1   
Hardware: PC   
OS: Linux   
Issue Type: DEFECT Exception Reporter:

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;