From e5c9d19e2596af85d37222c93a9b6a812ad25b4e Mon Sep 17 00:00:00 2001
From: Miroslav Prasil <miroslav@prasil.info>
Date: Fri, 11 May 2018 11:32:50 +0100
Subject: [PATCH] Remove outdated comment

---
 src/api/core/ciphers.rs | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/api/core/ciphers.rs b/src/api/core/ciphers.rs
index afdf7e78..0afe760e 100644
--- a/src/api/core/ciphers.rs
+++ b/src/api/core/ciphers.rs
@@ -320,7 +320,6 @@ fn post_collections_admin(uuid: String, data: Json<CollectionsAdminData>, header
     let posted_collections: HashSet<String> = data.collectionIds.iter().cloned().collect();
     let current_collections: HashSet<String> = cipher.get_collections(&conn).iter().cloned().collect();
 
-    //TODO: update cipher collection mapping
     for collection in posted_collections.symmetric_difference(&current_collections) {
         match Collection::find_by_uuid(&collection, &conn) {
             None => (), // Does not exist, what now?