| Summary: | [syntax highlighting] syntax coloring unstable with @link that spans multiple lines | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Markus Keller <markus.kell.r> |
| Component: | Text | Assignee: | JDT-Text-Inbox <jdt-text-inbox> |
| Status: | CLOSED WONTFIX | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | daniel_megert |
| Version: | 3.5.2 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
| Whiteboard: | stalebug | ||
Same problem in 3.5.2. Bug 104379 is about missing highlighting of the second line (which i still see in 3.7). Funny bug. This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet. As such, we're closing this bug. If you have further information on the current state of the bug, please add it and reopen this bug. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant. -- The automated Eclipse Genie. |
BETA_JAVA7 Semantic highlighting is unstable for the first inline @link tag in the example below. I have the "Javadoc > Links" element type set to italics. The first @link toggles between italic and upright, but I'm not 100% clear what conditions cause the toggling. The second @link tag is stable. Holding Ctrl down and moving the mouse onto the first "deepEquals" usually makes the link upright. After changing the target of Mark Occurrences, the link is usually italic again. package snippet; import java.util.Arrays; /** * The algorithm in {@link Arrays#deepEquals(Object[], * Object[]) Arrays.deepEquals} is used to determine equality. * <p> * Single line: * {@link Arrays#deepEquals(Object[], Object[]) Arrays.deepEquals} */ public final class Objects2 { }