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 10:53:00 +00:00
parent 90040ef5e2
commit 9c73e2262f

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);