Skip to content
Snippets Groups Projects
Commit eee9b0e4 authored by Timo Koch's avatar Timo Koch
Browse files

[params][fix] Consistently ignore defaults in hasKey/hasKeyInGroup

This has been forgotten in bug fix commit 61c2158e
parent 563a9e00
No related branches found
No related tags found
1 merge request!1842Fix/issue 802 inconsistent param lookup
......@@ -83,7 +83,7 @@ public:
return true;
auto compoundKey = groupPrefix + "." + key;
if (params_.hasKey(compoundKey) || defaultParams_.hasKey(compoundKey))
if (params_.hasKey(compoundKey))
return true;
compoundKey = findKeyInGroup(params_, key, groupPrefix);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment