1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-09-01 01:16:59 +02:00

clippy warnings

This commit is contained in:
Nikolay Kim
2017-10-09 23:10:15 -07:00
parent 676347d7f6
commit be7bda65ef
2 changed files with 3 additions and 5 deletions

View File

@@ -28,10 +28,8 @@ pub trait Message {
if let Ok(conn) = conn.to_str() {
if self.version() == Version::HTTP_10 && !conn.contains("keep-alive") {
false
} else if self.version() == Version::HTTP_11 && conn.contains("close") {
false
} else {
true
self.version() == Version::HTTP_11 && conn.contains("close")
}
} else {
false
@@ -163,7 +161,7 @@ impl HttpRequest {
}
pub(crate) fn is_upgrade(&self) -> bool {
if let Some(ref conn) = self.headers().get(header::CONNECTION) {
if let Some(conn) = self.headers().get(header::CONNECTION) {
if let Ok(s) = conn.to_str() {
return s.to_lowercase().contains("upgrade")
}