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 237987 - [Reafctor] Undo/Redo brokes code when calling from various classes
Summary: [Reafctor] Undo/Redo brokes code when calling from various classes
Status: RESOLVED WONTFIX
Alias: None
Product: java
Classification: Unclassified
Component: Refactoring (show other bugs)
Version: 8.0
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Ralph Ruijs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-11-05 10:22 UTC by ssazonov
Modified: 2016-07-07 07:18 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
Both classes (106.45 KB, image/png)
2013-11-05 10:22 UTC, ssazonov
Details

Note You need to log in before you can comment on or make changes to this bug.
Description ssazonov 2013-11-05 10:22:20 UTC
Created attachment 141859 [details]
Both classes

1. Create 2 simple java classes ClassA and ClassB

package test;

public class ClassA {
	public void test() {
        System.out.println("m1");
    }
}

----------------------

package test;

public class ClassB {
	public void m() {       
        ClassA a = new ClassA();
        a.test();
    }
}

2. Open both classes in editor like showing on attached image

3. Put caret into "a.t|est();" in ClassB where '|' is position of caret

4. Using Ctrl+R invoke Rename dialog, type new name "ttt" and press Refactor

5. Leave ClassB.java tab in editor selected, presa Undo and confirm, press Redo and confirm

6. Celect ClassA.java tab in editor, press Undo and confirm

>> Now method in ClassA has name "test" but in Classb it is named "ttt", so code is not compilable

Product Version: NetBeans IDE Dev (Build 201310290001)
Java: 1.7.0_45; Java HotSpot(TM) 64-Bit Server VM 24.45-b08
Runtime: Java(TM) SE Runtime Environment 1.7.0_45-b18
System: Windows 7 version 6.1 running on amd64; Cp1252; en_US (nb)
Comment 1 Martin Balin 2016-07-07 07:18:44 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