Commit 30b5e791 authored by eroman@chromium.org's avatar eroman@chromium.org

Cleanup: Remove some unnecessary breaks.

Introduced accidentally by copy-paste.

Review URL: https://codereview.chromium.org/658073003

git-svn-id: svn://svn.chromium.org/blink/trunk@183835 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 6236a609
...@@ -650,11 +650,9 @@ bool parseAlgorithmParams(const Dictionary& raw, WebCryptoAlgorithmParamsType ty ...@@ -650,11 +650,9 @@ bool parseAlgorithmParams(const Dictionary& raw, WebCryptoAlgorithmParamsType ty
case WebCryptoAlgorithmParamsTypeRsaOaepParams: case WebCryptoAlgorithmParamsTypeRsaOaepParams:
context.add("RsaOaepParams"); context.add("RsaOaepParams");
return parseRsaOaepParams(raw, params, context, error); return parseRsaOaepParams(raw, params, context, error);
break;
case WebCryptoAlgorithmParamsTypeRsaPssParams: case WebCryptoAlgorithmParamsTypeRsaPssParams:
context.add("RsaPssParams"); context.add("RsaPssParams");
return parseRsaPssParams(raw, params, context, error); return parseRsaPssParams(raw, params, context, error);
break;
} }
ASSERT_NOT_REACHED(); ASSERT_NOT_REACHED();
return false; return 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