| Summary: | [extract method] Doesn't consider enum type as static | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Markus Keller <markus.kell.r> | ||||
| Component: | UI | Assignee: | Markus Keller <markus.kell.r> | ||||
| Status: | VERIFIED FIXED | QA Contact: | |||||
| Severity: | minor | ||||||
| Priority: | P3 | CC: | daniel_megert | ||||
| Version: | 3.7 | ||||||
| Target Milestone: | 3.7 M1 | ||||||
| Hardware: | PC | ||||||
| OS: | Windows XP | ||||||
| Whiteboard: | |||||||
| Attachments: |
|
||||||
Fixed in HEAD. Verified in I20100802-1800. |
Created attachment 173222 [details] Fix HEAD Extract Method refactoring doesn't consider enum type as static: public class A_test1058 { private enum B { X, Y; private void extracted() { new Runnable() { public void run() { System.out.println(/*[*/2 + /**/ 3/*]*/); } }.run(); } } }