summaryrefslogtreecommitdiffstats
path: root/bluetooth/bluetoothmessage.cpp
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2018-10-29 09:59:31 -0700
committerMatt Ranostay <matt.ranostay@konsulko.com>2018-11-05 16:05:15 -0800
commitc8304d3ec2f83aed4f6b87a31f79dac72bb432de (patch)
tree0f9706251aba05c374aaa0720a3b4cd6bfc2a6da /bluetooth/bluetoothmessage.cpp
parent4508f46e8b3b42f2d062566ecbc741daf5cf1338 (diff)
Revert "libqtappfw: bluetooth: add binding version 2.0 verbs"
This reverts commit 4508f46e8b3b42f2d062566ecbc741daf5cf1338. Revert "libqtappfw: bluetooth: add initial API versioning to BluetoothMessage" This reverts commit daadd6ca0e572fe55d307ff034d8cd3342c1c7c1. Bug-AGL: SPEC-1630 Change-Id: Iac48c5a1b3bd2d1147c208cebe6b86bbdfa6d2ac Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'bluetooth/bluetoothmessage.cpp')
-rw-r--r--bluetooth/bluetoothmessage.cpp13
1 files changed, 3 insertions, 10 deletions
diff --git a/bluetooth/bluetoothmessage.cpp b/bluetooth/bluetoothmessage.cpp
index 9eef02f..52ecbed 100644
--- a/bluetooth/bluetoothmessage.cpp
+++ b/bluetooth/bluetoothmessage.cpp
@@ -23,15 +23,8 @@
bool BluetoothMessage::createRequest(QString verb, QJsonObject parameter)
{
- if (m_api_version == "1.0") {
- if (!verbs_v1.contains(verb))
- return false;
- }
+ if (!verbs.contains(verb))
+ return false;
- if (m_api_version == "2.0") {
- if (!verbs_v2.contains(verb))
- return false;
- }
-
- return Message::createRequest("Bluetooth-Manager", verb, parameter);
+ return Message::createRequest("Bluetooth-Manager", verb, parameter);
}