altosui: comment out un-used classes and associated imports
authorMike Beattie <mike@ethernal.org>
Fri, 14 Sep 2012 01:14:31 +0000 (13:14 +1200)
committerMike Beattie <mike@ethernal.org>
Fri, 14 Sep 2012 01:14:31 +0000 (13:14 +1200)
Signed-off-by: Mike Beattie <mike@ethernal.org>
altosui/AltosConfigureUI.java
altosui/AltosGraphUI.java

index a364273a1be4e865487bb7c8e6611f2a0d3cc70d..c576b052f71f2db15e9360ba253fbfc9762ad2fa 100644 (file)
@@ -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();
 
index 7715eeddf840274410917d644806e3e57ca25a3d..f2addfd364e6423e7e41245b8fabf6f8f02cf80c 100644 (file)
@@ -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));