Community
Participate
Working Groups
In CompositeEditorFactoriesRegistry#getCompositeEditorFactory, the factory checks if the type is handled by a given cell editor. But it doesn't work for subtypes. The comparison is currently: objectType.isAssignableFrom(handledType) It should be instead: handledType.isAssignableFrom(objectType)
Fixed in revision 477.
I assume this bug can be closed, but a unit test would have been welcomed to help the reviewer to check the correctness of the fix.