summaryrefslogtreecommitdiff
path: root/src/components/config_profile
diff options
context:
space:
mode:
authorJacob Keeler <jacob.keeler@livioradio.com>2018-08-21 09:47:49 -0400
committerGitHub <noreply@github.com>2018-08-21 09:47:49 -0400
commit9b34f547fa8d1cc9da8ad1d64ad6996496dc35b5 (patch)
treea6fe573ef32a5669cf6f1cf1b4ca756f61dbea52 /src/components/config_profile
parent5224964d04b61cefef075ab9edd34c3dfac7886f (diff)
parent01332dd085a0dcb7ca3acca6f192c534414ea770 (diff)
downloadsdl_core-9b34f547fa8d1cc9da8ad1d64ad6996496dc35b5.tar.gz
Merge branch 'develop' into feature/low_voltage
Diffstat (limited to 'src/components/config_profile')
-rw-r--r--src/components/config_profile/include/config_profile/profile.h6
-rw-r--r--src/components/config_profile/src/profile.cc4
2 files changed, 0 insertions, 10 deletions
diff --git a/src/components/config_profile/include/config_profile/profile.h b/src/components/config_profile/include/config_profile/profile.h
index 17437a04a3..c6fc2017b9 100644
--- a/src/components/config_profile/include/config_profile/profile.h
+++ b/src/components/config_profile/include/config_profile/profile.h
@@ -131,12 +131,6 @@ class Profile : public protocol_handler::ProtocolHandlerSettings,
int ignition_off_signal_offset() const;
/**
- * @brief Returns true, if SDL 4.0 is enabled
- * @deprecated use max_supported_protocol_version instead
- */
- DEPRECATED bool enable_protocol_4() const OVERRIDE;
-
- /**
* @brief Returns application icons folder path
*/
const std::string& app_icons_folder() const OVERRIDE;
diff --git a/src/components/config_profile/src/profile.cc b/src/components/config_profile/src/profile.cc
index 3db4dda816..e24e0c4481 100644
--- a/src/components/config_profile/src/profile.cc
+++ b/src/components/config_profile/src/profile.cc
@@ -551,10 +551,6 @@ int Profile::ignition_off_signal_offset() const {
return ignition_off_signal_offset_;
}
-bool Profile::enable_protocol_4() const {
- return max_supported_protocol_version_ >= 4;
-}
-
const std::string& Profile::app_icons_folder() const {
return app_icons_folder_;
}