From 93c7ea784c858c7524421b4810a804f6a178d5e8 Mon Sep 17 00:00:00 2001 From: Kevin Ruland Date: Tue, 24 Apr 2012 21:32:32 +0000 Subject: [PATCH] Removed FIXME. --- core/src/net/sf/openrocket/preset/ComponentPreset.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/net/sf/openrocket/preset/ComponentPreset.java b/core/src/net/sf/openrocket/preset/ComponentPreset.java index bfea0a335..13ace7165 100644 --- a/core/src/net/sf/openrocket/preset/ComponentPreset.java +++ b/core/src/net/sf/openrocket/preset/ComponentPreset.java @@ -326,7 +326,7 @@ public class ComponentPreset implements Comparable { double d = ((Material)value).getDensity(); os.writeDouble(d); } else if ( key.getType() == Shape.class ) { - // FIXME - this is ugly to use the ordinal but what else? + // this is ugly to use the ordinal but what else? int i = ((Shape)value).ordinal(); os.writeInt(i); }