From ecf0db17cebccd4df8aab0a2be78c60e26e9c417 Mon Sep 17 00:00:00 2001 From: Tomasz Grabiec Date: Sat, 14 Mar 2015 13:18:55 +0100 Subject: [PATCH] db: Drop comment which doesn't seem to be relevant any more --- database.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/database.cc b/database.cc index 3c531f3bd9..eef94d8c64 100644 --- a/database.cc +++ b/database.cc @@ -113,7 +113,6 @@ column_family::find_or_create_partition(const bytes& key) { row& column_family::find_or_create_row(const bytes& partition_key, const bytes& clustering_key) { mutation_partition& p = find_or_create_partition(partition_key); - // call lower_bound so we have a hint for the insert, just in case. return p.clustered_row(clustering_key); }