An error has been introduced in pull #8 that manifests in net.sf.openrocket.rocketcomponent.InstanceMap line 34:
Error:(34, 34) java: incompatible types: java.util.ArrayList<java.lang.Object> cannot be converted to java.util.ArrayList<net.sf.openrocket.rocketcomponent.InstanceContext>
Changing the line from
put(key, new ArrayList<>());
to
put(key, new ArrayList<InstanceContext>());
fixes this particular error, but then there are more issues that pop up in other files relating to a .getClass() method.
An error has been introduced in pull #8 that manifests in
net.sf.openrocket.rocketcomponent.InstanceMapline 34:Changing the line from
to
fixes this particular error, but then there are more issues that pop up in other files relating to a
.getClass()method.