aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/dsi/ant/server/AntService.java
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2013-11-27 04:46:02 -0800
committerGerrit - the friendly Code Review server <code-review@localhost>2013-11-27 04:46:02 -0800
commit5c9ec1753dfcb83b98c26354d92d05f4be4fd808 (patch)
treee4cbe9844b46ae5f8537e5f829d24c545bba9b38 /src/com/dsi/ant/server/AntService.java
parent7d9b3d460d4614975cff3f1391462ca6ec4e8080 (diff)
parenta272d423058aefeac919e6c8d27bcbe5128235df (diff)
downloadandroid_external_ant-wireless_ant_service-5c9ec1753dfcb83b98c26354d92d05f4be4fd808.tar.gz
android_external_ant-wireless_ant_service-5c9ec1753dfcb83b98c26354d92d05f4be4fd808.tar.bz2
android_external_ant-wireless_ant_service-5c9ec1753dfcb83b98c26354d92d05f4be4fd808.zip
Merge "Merge remote-tracking branch 'remotes/quic/caf/github/master' into local"
Diffstat (limited to 'src/com/dsi/ant/server/AntService.java')
-rw-r--r--src/com/dsi/ant/server/AntService.java16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/com/dsi/ant/server/AntService.java b/src/com/dsi/ant/server/AntService.java
index 1ed828f..92e4e67 100644
--- a/src/com/dsi/ant/server/AntService.java
+++ b/src/com/dsi/ant/server/AntService.java
@@ -117,21 +117,7 @@ public class AntService extends Service
* Checks if Bluetooth needs to be turned on for ANT to enable
*/
private boolean requiresBluetoothOn() {
- return isQcomPlatform();
- }
-
- /**
- * Checks if the current platform is QCom
- */
- private boolean isQcomPlatform()
- {
- if ((SystemProperties.get("ro.board.platform").equals("msm8974"))
- || (SystemProperties.get("ro.board.platform").equals("msm8610"))
- || (SystemProperties.get("ro.board.platform").equals("msm8226"))) {
-
- return true;
- }
- return false;
+ return false; // Set to true if require bluetooth on for ANT functionality
}
public static boolean startService(Context context)