Skip to content

Commit 23aa516

Browse files
committed
Remove comment
1 parent 6c788ed commit 23aa516

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

crates/bitwarden-wasm-internal/src/client.rs

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -106,26 +106,6 @@ extern "C" {
106106
async fn remove(this: &JSCipherStore, id: String);
107107
}
108108

109-
/*
110-
#[async_trait::async_trait]
111-
impl DataStore<Cipher> for ChannelJSCipherStore {
112-
async fn get(&self, id: String) -> Option<Cipher> {
113-
ChannelJSCipherStore::get(self, id).await
114-
}
115-
116-
async fn list(&self) -> Vec<Cipher> {
117-
ChannelJSCipherStore::list(self).await
118-
}
119-
120-
async fn set(&self, id: String, value: Cipher) {
121-
ChannelJSCipherStore::set(self, id, value).await;
122-
}
123-
124-
async fn remove(&self, id: String) {
125-
ChannelJSCipherStore::remove(self, id).await;
126-
}
127-
}*/
128-
129109
#[wasm_bindgen]
130110
impl StoreClient {
131111
pub async fn print_the_ciphers(&self) -> String {

0 commit comments

Comments
 (0)