Skip to content
Snippets Groups Projects
Commit 70d9e537 authored by Robert Czechowski's avatar Robert Czechowski
Browse files

Fix clippy complaint in iron_sessionstorage copy

parent 90cb33af
Branches admin-delete-stuff
Tags
No related merge requests found
Pipeline #752 passed
......@@ -41,7 +41,6 @@ impl RawSession for SignedCookieSession {
self.unsigned_jar
.borrow()
.delta()
.into_iter()
.map(|c| format!("{}", c))
.collect()
));
......
......@@ -49,7 +49,7 @@ pub struct SessionStorage<B: SessionBackend> {
impl<B: SessionBackend> SessionStorage<B> {
pub fn new(backend: B) -> Self {
SessionStorage {
backend: backend
backend
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment