From: Mike Beattie Date: Fri, 14 Sep 2012 01:14:31 +0000 (+1200) Subject: altosui: comment out un-used classes and associated imports X-Git-Tag: 1.1.9.1~55^2~5 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=38fb6c070ffaf820d524fecce540d91fc6dda57b altosui: comment out un-used classes and associated imports Signed-off-by: Mike Beattie --- diff --git a/altosui/AltosConfigureUI.java b/altosui/AltosConfigureUI.java index a364273a..c576b052 100644 --- a/altosui/AltosConfigureUI.java +++ b/altosui/AltosConfigureUI.java @@ -22,7 +22,6 @@ import java.awt.event.*; import java.beans.*; import javax.swing.*; import javax.swing.event.*; -import javax.swing.plaf.basic.*; class DelegatingRenderer implements ListCellRenderer { @@ -289,6 +288,7 @@ public class AltosConfigureUI c.anchor = GridBagConstraints.WEST; pane.add(new JLabel("Look & feel"), c); + /* class LookAndFeelRenderer extends BasicComboBoxRenderer implements ListCellRenderer { public LookAndFeelRenderer() { @@ -307,6 +307,7 @@ public class AltosConfigureUI return this; } } + */ final UIManager.LookAndFeelInfo[] look_and_feels = UIManager.getInstalledLookAndFeels(); diff --git a/altosui/AltosGraphUI.java b/altosui/AltosGraphUI.java index 7715eedd..f2addfd3 100644 --- a/altosui/AltosGraphUI.java +++ b/altosui/AltosGraphUI.java @@ -143,7 +143,8 @@ public class AltosGraphUI extends AltosFrame return graphs; } } - + + /* static private class AscentGraphs extends OverallGraphs { protected AltosGraphTime myAltosGraphTime(String suffix) { return (new AltosGraphTime("Ascent " + suffix) { @@ -158,7 +159,9 @@ public class AltosGraphUI extends AltosFrame .addElement(e_coast); } } - + */ + + /* static private class DescentGraphs extends OverallGraphs { protected AltosGraphTime myAltosGraphTime(String suffix) { return (new AltosGraphTime("Descent " + suffix) { @@ -173,6 +176,7 @@ public class AltosGraphUI extends AltosFrame // ((XYGraph)graph[8]).ymin = new Double(-50); } } + */ public AltosGraphUI(AltosRecordIterable records, String name) throws InterruptedException, IOException { super(String.format("Altos Graph %s", name));