diff options
| author | Mike Beattie <mike@ethernal.org> | 2012-09-14 13:13:35 +1200 | 
|---|---|---|
| committer | Mike Beattie <mike@ethernal.org> | 2012-09-14 13:13:35 +1200 | 
| commit | ce1b19a012a2c1c623b03efb93b881e297736718 (patch) | |
| tree | 4b8872dde26d43a4d10f65aa412da8970839c2e7 /altosui/AltosGraphUI.java | |
| parent | 382c54a0d052c8975b57c995ef83bc8934bde242 (diff) | |
altosui: comment out un-used fields and methods
Signed-off-by: Mike Beattie <mike@ethernal.org>
Diffstat (limited to 'altosui/AltosGraphUI.java')
| -rw-r--r-- | altosui/AltosGraphUI.java | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/altosui/AltosGraphUI.java b/altosui/AltosGraphUI.java index e0e03093..7715eedd 100644 --- a/altosui/AltosGraphUI.java +++ b/altosui/AltosGraphUI.java @@ -22,9 +22,9 @@ public class AltosGraphUI extends AltosFrame      static final private Color red = new Color(194,31,31);      static final private Color green = new Color(31,194,31);      static final private Color blue = new Color(31,31,194); -    static final private Color black = new Color(31,31,31); +    //static final private Color black = new Color(31,31,31);      static final private Color yellow = new Color(194,194,31); -    static final private Color cyan = new Color(31,194,194); +    //static final private Color cyan = new Color(31,194,194);      static final private Color magenta = new Color(194,31,194);      static private class OverallGraphs { @@ -94,7 +94,7 @@ public class AltosGraphUI extends AltosFrame                  }              }; -        AltosGraphTime.Element e_pad    = new AltosGraphTime.StateMarker(Altos.ao_flight_pad, "Pad"); +        //AltosGraphTime.Element e_pad    = new AltosGraphTime.StateMarker(Altos.ao_flight_pad, "Pad");          AltosGraphTime.Element e_boost  = new AltosGraphTime.StateMarker(Altos.ao_flight_boost, "Boost");          AltosGraphTime.Element e_fast   = new AltosGraphTime.StateMarker(Altos.ao_flight_fast, "Fast");          AltosGraphTime.Element e_coast  = new AltosGraphTime.StateMarker(Altos.ao_flight_coast, "Coast"); @@ -223,11 +223,13 @@ public class AltosGraphUI extends AltosFrame          return createGraphsWhich(data, which).get(0);      } +    /*      private static ArrayList<AltosGraph> createGraphs(              Iterable<AltosDataPoint> data)      {          return createGraphsWhich(data, -1);      } +    */      private static ArrayList<AltosGraph> createGraphsWhich(              Iterable<AltosDataPoint> data, int which) | 
