Remove unnecessary return statement.

This commit is contained in:
Nolan Darilek 2022-11-22 11:13:05 -06:00
parent f5716c48f5
commit e19e5ef0b7
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ impl Backend for Web {
return Ok(());
}
}
return Err(Error::OperationFailed);
Err(Error::OperationFailed)
} else {
Err(Error::NoneError)
}