cookie: fix a new match error about redundant `else`

pull/4599/head
Delyan Angelov 2020-04-25 23:02:04 +03:00
parent 19d7553d67
commit cd27300d75
1 changed files with 0 additions and 3 deletions

View File

@ -266,9 +266,6 @@ pub fn (c &Cookie) str() string {
.same_site_strict_mode {
b.write('; SameSite=Strict')
}
else {
// Do nothing
}
}
return b.str()
}