Bug 1571567 - Fix no-fallthrough errors in /netwerk. r=dragana

Differential Revision: https://phabricator.services.mozilla.com/D40877

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Jared Wein 2019-08-08 15:18:38 +00:00
parent c4dc4bec25
commit 9ad3ab33b5

View File

@ -528,7 +528,7 @@ CookieDatabaseConnection.prototype = {
switch (this.db.schemaVersion) {
case 1:
do_throw("can't update a schema 1 cookie!");
break;
case 2:
case 3:
this.stmtUpdate.bindByName("id", cookie.creationTime);