| Summary: | BinaryTypeBinding cannot be cast to SourceTypeBinding while debugging | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Mauro Molinari <mauromol> |
| Component: | Debug | Assignee: | JDT-Debug-Inbox <jdt-debug-inbox> |
| Status: | CLOSED DUPLICATE | QA Contact: | |
| Severity: | major | ||
| Priority: | P3 | CC: | Michael_Rennie |
| Version: | 3.6.2 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
| Whiteboard: | |||
|
Description
Mauro Molinari
I just found out the following. The error shows up on a java.util.Properties instance and it disappears if I disable a detail formatter I have for java.util.Map variables. The formatter code snippet is the following:
String result = "";
for(final Object o : keySet())
{
Object value = get(o);
result = result + String.valueOf(o) + " = " +
String.valueOf(value) + "\n";
}
return result;
*** This bug has been marked as a duplicate of bug 317046 *** Thank you Michael and sorry for the duplication, I did a couple of searches for BinaryTypeBinding/cast/etc. but couldn't find anything. |