Assume I have the following object:
public class Untyped {
@XStreamImplicit
private List list = new ArrayList();
}
Calling
Annotations.configureAliases(xs, Untyped.class);
leads to a NullPointerException because XStream cannot find a generic type of the list.
Fixed in head revision.