Fixed cast error

This commit is contained in:
Treeku
2014-05-31 13:45:40 +01:00
parent 72e8b2ad61
commit 4fa08a623f
@@ -173,10 +173,11 @@ public class TangibleObject extends SWGObject implements Serializable {
}
public SWGList<Integer> getComponentCustomizations() {
return (SWGList<Integer>) getBaseline(3).get("componentCustomizations");
return (SWGSet<Integer>) getBaseline(3).get("componentCustomizations");
}
public void setComponentCustomizations(List<Integer> componentCustomizations) {
getComponentCustomizations().clear();
getComponentCustomizations().addAll(componentCustomizations);
}