From ae51d99fb89e3311196a5d2f491812845169d834 Mon Sep 17 00:00:00 2001 From: Nikolay Volf Date: Fri, 4 Mar 2016 16:40:17 +0300 Subject: [PATCH] [ci skip] trailing commas --- util/src/keys/store.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/util/src/keys/store.rs b/util/src/keys/store.rs index 99cbf751b..f05b8dec4 100644 --- a/util/src/keys/store.rs +++ b/util/src/keys/store.rs @@ -59,7 +59,7 @@ pub enum EncryptedHashMapError { /// Represent service for storing encrypted arbitrary data pub struct SecretStore { directory: KeyDirectory, - unlocks: RwLock> + unlocks: RwLock>, } struct AccountUnlock { @@ -80,7 +80,7 @@ impl SecretStore { pub fn new_in(path: &Path) -> SecretStore { SecretStore { directory: KeyDirectory::new(path), - unlocks: RwLock::new(HashMap::new()) + unlocks: RwLock::new(HashMap::new()), } } @@ -129,7 +129,7 @@ impl SecretStore { fn new_test(path: &::devtools::RandomTempPath) -> SecretStore { SecretStore { directory: KeyDirectory::new(path.as_path()), - unlocks: RwLock::new(HashMap::new()) + unlocks: RwLock::new(HashMap::new()), } }