Skip to content

Commit 40b1084

Browse files
committed
chore: remove redundant imports
1 parent 39bab04 commit 40b1084

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

actix-tls/src/connect/rustls_0_20.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
//! See [`TlsConnector`] for main connector service factory docs.
44
55
use std::{
6-
convert::TryFrom,
76
future::Future,
87
io,
98
pin::Pin,

actix-tls/src/connect/rustls_0_21.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
//! See [`TlsConnector`] for main connector service factory docs.
44
55
use std::{
6-
convert::TryFrom,
76
future::Future,
87
io,
98
pin::Pin,

actix-tls/tests/test_connect.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,6 @@ async fn service_factory() {
9898
#[cfg(all(feature = "openssl", feature = "uri"))]
9999
#[actix_rt::test]
100100
async fn test_openssl_uri() {
101-
use std::convert::TryFrom;
102-
103101
let srv = TestServer::start(|| {
104102
fn_service(|io: TcpStream| async {
105103
let mut framed = Framed::new(io, BytesCodec);
@@ -134,8 +132,6 @@ async fn test_rustls_uri_http1() {
134132
#[cfg(all(feature = "rustls-0_22", feature = "uri"))]
135133
#[actix_rt::test]
136134
async fn test_rustls_uri() {
137-
use std::convert::TryFrom;
138-
139135
let srv = TestServer::start(|| {
140136
fn_service(|io: TcpStream| async {
141137
let mut framed = Framed::new(io, BytesCodec);

0 commit comments

Comments
 (0)