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/AltosInfoTable.java | |
| parent | 382c54a0d052c8975b57c995ef83bc8934bde242 (diff) | |
altosui: comment out un-used fields and methods
Signed-off-by: Mike Beattie <mike@ethernal.org>
Diffstat (limited to 'altosui/AltosInfoTable.java')
| -rw-r--r-- | altosui/AltosInfoTable.java | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/altosui/AltosInfoTable.java b/altosui/AltosInfoTable.java index c4f42125..d578f2d2 100644 --- a/altosui/AltosInfoTable.java +++ b/altosui/AltosInfoTable.java @@ -85,9 +85,9 @@ public class AltosInfoTable extends JTable {  	}  	void info_add_deg(int col, String name, double v, int pos, int neg) { -		int	c = pos; +		//int	c = pos;  		if (v < 0) { -			c = neg; +			//c = neg;  			v = -v;  		}  		double	deg = Math.floor(v); @@ -184,7 +184,7 @@ public class AltosInfoTable extends JTable {  				       state.gps.hour,  				       state.gps.minute,  				       state.gps.second); -			int	nsat_vis = 0; +			//int	nsat_vis = 0;  			int	c;  			if (state.gps.cc_gps_sat == null)  | 
