diff options
Diffstat (limited to 'floss/android-base/properties.cc')
-rw-r--r-- | floss/android-base/properties.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/floss/android-base/properties.cc b/floss/android-base/properties.cc index dea892b6c4..45e293ba92 100644 --- a/floss/android-base/properties.cc +++ b/floss/android-base/properties.cc @@ -21,8 +21,7 @@ namespace android { namespace base { -std::string GetProperty(const std::string& key, - const std::string& default_value) { +std::string GetProperty(const std::string& key, const std::string& default_value) { return bluetooth::os::GetSystemProperty(key).value_or(default_value); } |