Closed almondtools closed 8 years ago
Serializing Objects which import classes of the same Name (such as java.util.Date and java.sql.Date) lead to two import statements
java.util.Date
java.sql.Date
import java.util.Date; import java.sql.Date;
which is not supported by Java. In this case the code must use the unique class name instead of the simple one (and imports must be excluded).
fixed with release 0.1.4
Serializing Objects which import classes of the same Name (such as
java.util.Date
andjava.sql.Date
) lead to two import statementswhich is not supported by Java. In this case the code must use the unique class name instead of the simple one (and imports must be excluded).