From 674da044c676d74052df93d1faec20c2cfc3c4c6 Mon Sep 17 00:00:00 2001 From: Ricky Barrette Date: Mon, 5 Mar 2012 11:02:11 -0500 Subject: [PATCH] Commented out debugging System.out.print call in CompassSensor.130 Change-Id: I2b48c98d8bfa9d8faa6afbe2f99d878847793095 Signed-off-by: Ricky Barrette --- .../src/com/TwentyCodes/android/location/CompassSensor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LocationLib/src/com/TwentyCodes/android/location/CompassSensor.java b/LocationLib/src/com/TwentyCodes/android/location/CompassSensor.java index 64af5f1..54bbdb4 100644 --- a/LocationLib/src/com/TwentyCodes/android/location/CompassSensor.java +++ b/LocationLib/src/com/TwentyCodes/android/location/CompassSensor.java @@ -127,7 +127,7 @@ public class CompassSensor{ mHandler = new Handler(){ @Override public void handleMessage(Message msg){ - System.out.print((Float) msg.obj); +// System.out.print((Float) msg.obj); if(mListener != null) if(msg.what == BEARING) mListener.onCompassUpdate((Float) msg.obj);