Commit 6d3d8fed authored by Nico Weber's avatar Nico Weber Committed by Commit Bot

Remove two dead returns.

Bug: 1066980
Change-Id: Iad325860483f84b7d1538f1908daf145b45ff8fc
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2133924
Commit-Queue: Nico Weber <thakis@chromium.org>
Commit-Queue: Ian Clelland <iclelland@chromium.org>
Auto-Submit: Nico Weber <thakis@chromium.org>
Reviewed-by: default avatarIan Clelland <iclelland@chromium.org>
Cr-Commit-Position: refs/heads/master@{#755930}
parent aa49806e
......@@ -824,7 +824,6 @@ class FeaturePolicyMutationTest : public testing::Test {
return result->feature == feature && result->fallback_value >= max_value &&
result->opaque_value >= max_value && result->values.empty();
return true;
}
// Returns true if the policy contains a declaration for the feature which
......@@ -840,7 +839,6 @@ class FeaturePolicyMutationTest : public testing::Test {
return result->feature == feature && result->fallback_value <= min_value &&
result->opaque_value <= min_value && result->values.empty();
return true;
}
const PolicyValue min_value = PolicyValue(false);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment