Change FIXMEs to TODOs. Actually they might not be an issue at all.

This commit is contained in:
Kevin Ruland 2012-08-23 02:28:19 +00:00
parent 0c9db36841
commit 8969a73600
2 changed files with 2 additions and 2 deletions

View File

@ -117,7 +117,7 @@ public class ParachuteDTO extends BaseComponentDTO {
public ComponentPreset asComponentPreset(ComponentPreset.Type type, List<MaterialDTO> materials) throws InvalidComponentPresetException {
TypedPropertyMap props = new TypedPropertyMap();
addProps(props, materials);
// FIXME - seems some vendors use a bulk material for the sheet along with a Thickness.
// TODO - seems some vendors use a bulk material for the sheet along with a Thickness.
// need to fix the MATERIAL packed into the componentpreset.
props.put(ComponentPreset.TYPE, type);
props.put(ComponentPreset.DIAMETER, this.getDiameter());

View File

@ -90,7 +90,7 @@ public class StreamerDTO extends BaseComponentDTO {
public ComponentPreset asComponentPreset(ComponentPreset.Type type, List<MaterialDTO> materials) throws InvalidComponentPresetException {
TypedPropertyMap props = new TypedPropertyMap();
addProps(props, materials);
// FIXME - seems some vendors use a bulk material for the sheet along with a Thickness.
// TODO - seems some vendors use a bulk material for the sheet along with a Thickness.
// need to fix the MATERIAL packed into the componentpreset.
props.put(ComponentPreset.WIDTH, this.getWidth());
props.put(ComponentPreset.THICKNESS, this.getThickness());