| Summary: | [Xtend] quick fix for implementing abstract methods produces ugly code | ||
|---|---|---|---|
| Product: | [Modeling] TMF | Reporter: | Sven Efftinge <sven.efftinge> |
| Component: | Xtext | Assignee: | Project Inbox <tmf.xtext-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | Flags: | sven.efftinge:
juno+
|
| Version: | 2.2.0 | ||
| Target Milestone: | M5 | ||
| Hardware: | PC | ||
| OS: | Mac OS X - Carbon (unsup.) | ||
| Whiteboard: | |||
pushed to master Closing all bugs that were set to RESOLVED before Neon.0 Closing all bugs that were set to RESOLVED before Neon.0 |
Applying the quick fix for unimplemented abstract methods produces badly formatted code: class MyDslGenerator implements IGenerator, Comparable { override doGenerate(Resource input, IFileSystemAccess fsa) { throw new UnsupportedOperationException("Auto-generated function stub") }override compareTo(Object o) { throw new UnsupportedOperationException("Auto-generated function stub") }}