| Summary: | [quick fix] in case of instanceof generic type | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Nanda Firdausi <nanda.firdausi> |
| Component: | UI | Assignee: | JDT-UI-Inbox <jdt-ui-inbox> |
| Status: | RESOLVED WORKSFORME | QA Contact: | |
| Severity: | enhancement | ||
| Priority: | P3 | CC: | daniel_megert, nanda.firdausi |
| Version: | 3.7 | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
Simply use content assist (Ctrl+Space) to do this. |
Build Identifier: In case of instanceof generic type like this: if (a instanceof Map) { Eclipse should offer a quick fix to add unbounded generic type to the class name, so the result is something like this: if (a instanceof Map<?,?>) { Reproducible: Always