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 178867

Summary: Wrong indentation: nested "for", "if", etc without curly braces
Product: cnd Reporter: gene91 <gene91>
Component: EditorAssignee: Alexander Simon <alexvsimon>
Status: VERIFIED FIXED    
Severity: normal CC: sustaining
Priority: P3    
Version: 6.x   
Hardware: PC   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description gene91 2009-12-18 09:33:42 UTC
The editor failed to indent correctly on the following cases.

for (int i=0; i<n; i++)
  for (int j=0; j<n; j++)
    a[i][j]=0;
^   ^//The first "^" indicate the correct indentation while the editor believes the latter would be right.

for (...)
  if (...)
    ...
    //same problem here.

And the problem also exists in situations where deeper nesting is involved, for example, the 4-level nesting when coding Floyed-Warshall algorithm.
Comment 1 Alexander Simon 2010-01-09 03:37:49 UTC
fixed, change set:
http://hg.netbeans.org/cnd-main/rev/6137fde48934
Comment 2 Quality Engineering 2010-01-09 23:40:59 UTC
Integrated into 'main-golden', will be available in build *201001100200* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)
Changeset: http://hg.netbeans.org/main/rev/6137fde48934
User: alexvsimon@netbeans.org
Log: fixed BZ#178867 Wrong indentation: nested "for", "if", etc without curly braces
Comment 3 Alexander Pepin 2010-01-15 06:57:49 UTC
verified in trunk build 201001150201
Comment 4 pgebauer 2010-01-18 05:45:54 UTC
The fix has been ported into the release68_fixes repository.
http://hg.netbeans.org/release68_fixes/rev/fb8323b5ccf6
Comment 5 Alexander Pepin 2010-01-26 06:57:50 UTC
verified in patch1 candidate