Merge "Fix a misleading warning message about sysprop overriding" am: 6c7b75b421
Original change: https://android-review.googlesource.com/c/platform/system/core/+/1331393 Change-Id: Ic442e2745923b5c6f38525233d0cf9fe9d10de04
This commit is contained in:
commit
1adcea5c84
1 changed files with 2 additions and 2 deletions
|
|
@ -711,8 +711,8 @@ static void LoadProperties(char* data, const char* filter, const char* filename,
|
|||
if (it == properties->end()) {
|
||||
(*properties)[key] = value;
|
||||
} else if (it->second != value) {
|
||||
LOG(WARNING) << "Overriding previous 'ro.' property '" << key << "':'"
|
||||
<< it->second << "' with new value '" << value << "'";
|
||||
LOG(WARNING) << "Overriding previous property '" << key << "':'" << it->second
|
||||
<< "' with new value '" << value << "'";
|
||||
it->second = value;
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue