Skip to content

Commit 7377844

Browse files
committed
removed dead code
Signed-off-by: Eric Devolder <[email protected]>
1 parent 1f72f1a commit 7377844

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

cryptoki/src/session/mod.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ pub use session_info::{SessionInfo, SessionState};
3232
pub struct Session {
3333
handle: CK_SESSION_HANDLE,
3434
client: Pkcs11,
35-
#[allow(dead_code)]
36-
search_active: bool,
3735
// This is not used but to prevent Session to automatically implement Send and Sync
3836
_guard: PhantomData<*mut u32>,
3937
}
@@ -65,7 +63,6 @@ impl Session {
6563
Session {
6664
handle,
6765
client,
68-
search_active: false,
6966
_guard: PhantomData,
7067
}
7168
}

0 commit comments

Comments
 (0)