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 243719

Summary: Introduce variable places it one too high
Product: java Reporter: Zom-B
Component: HintsAssignee: Svata Dedic <sdedic>
Status: RESOLVED WONTFIX    
Severity: normal    
Priority: P4    
Version: 8.0   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description Zom-B 2014-04-10 07:33:59 UTC
Not a dup of Bug 217386 because I don't care about comments

For example, when I have this:

List<String> names = new ArrayList<>();

for(int i = 0; i < countNames(); i++)
  names.add(getName(i));

After refactoring it becomes:

List<String> names = new ArrayList<>();
int countNames = countNames();

for(int i = 0; i < countNames; i++)
  names.add(getName(i));

Expected:

List<String> names = new ArrayList<>();

int countNames = countNames();
for(int i = 0; i < countNames; i++)
  names.add(getName(i));
Comment 1 Martin Balin 2016-07-07 07:19:07 UTC
This old bug may not be relevant anymore. If you can still reproduce it in 8.2 development builds please reopen this issue.

Thanks for your cooperation,
NetBeans IDE 8.2 Release Boss