From: kruland2607 Date: Thu, 23 Aug 2012 02:28:19 +0000 (+0000) Subject: Change FIXMEs to TODOs. Actually they might not be an issue at all. X-Git-Tag: upstream/12.09^2~38 X-Git-Url: https://git.gag.com/?p=debian%2Fopenrocket;a=commitdiff_plain;h=8cc16205fc7dfdf5e9fcfe0ff73cb1c20acf7cbb Change FIXMEs to TODOs. Actually they might not be an issue at all. git-svn-id: https://openrocket.svn.sourceforge.net/svnroot/openrocket/trunk@986 180e2498-e6e9-4542-8430-84ac67f01cd8 --- diff --git a/core/src/net/sf/openrocket/preset/xml/ParachuteDTO.java b/core/src/net/sf/openrocket/preset/xml/ParachuteDTO.java index b21f5d4a..f7056c05 100644 --- a/core/src/net/sf/openrocket/preset/xml/ParachuteDTO.java +++ b/core/src/net/sf/openrocket/preset/xml/ParachuteDTO.java @@ -117,7 +117,7 @@ public class ParachuteDTO extends BaseComponentDTO { public ComponentPreset asComponentPreset(ComponentPreset.Type type, List 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()); diff --git a/core/src/net/sf/openrocket/preset/xml/StreamerDTO.java b/core/src/net/sf/openrocket/preset/xml/StreamerDTO.java index b80f6410..7ed0dd84 100644 --- a/core/src/net/sf/openrocket/preset/xml/StreamerDTO.java +++ b/core/src/net/sf/openrocket/preset/xml/StreamerDTO.java @@ -90,7 +90,7 @@ public class StreamerDTO extends BaseComponentDTO { public ComponentPreset asComponentPreset(ComponentPreset.Type type, List 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());