Community
Participate
Working Groups
Build Identifier: 20100917-0705 I don't know the exact context in which this occurred but I got a cast exception in public boolean isAdapterForType(Object type) { return INode.class.isAssignableFrom((Class<?>)type); } Reproducible: Couldn't Reproduce
I modified it to public boolean isAdapterForType(Object type) { return type instanceof Class <?> && INode.class.isAssignableFrom((Class<?>)type); } and did not notice any further problems. But frankly, I don't exactly know what I'm doing here so this may not be a good patch.
Fixed. Thanks for the pointer and the patch.
Closing all bugs that were set to RESOLVED before Neon.0