morphia
morphia copied to clipboard
Mapping fails if entity class has generic fields
Breaks in the method called fromDBObject. It appears that code does not account for generic variables.
Sample class:
public class TemporalTuple<T> implements Comparable<T> {
private Date effectiveFrom = new Date(), effectiveTo;
private <T>value;
. . .