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 - Wrong indentation: nested "for", "if", etc without curly braces
Summary: Wrong indentation: nested "for", "if", etc without curly braces
Status: VERIFIED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Editor (show other bugs)
Version: 6.x
Hardware: PC All
: P3 normal with 1 vote (vote)
Assignee: Alexander Simon
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-12-18 09:33 UTC by gene91
Modified: 2010-01-26 06:57 UTC (History)
1 user (show)

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 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