From 3f9960f308f8d0dd61b3717d9f2b31e7c2c2e662 Mon Sep 17 00:00:00 2001 From: Yilin Chen Date: Wed, 14 Aug 2019 16:00:16 +0800 Subject: [PATCH] Remove outdated comment Signed-off-by: Yilin Chen --- src/transaction/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/transaction/mod.rs b/src/transaction/mod.rs index 55c0a12..c9ee2d3 100644 --- a/src/transaction/mod.rs +++ b/src/transaction/mod.rs @@ -50,7 +50,6 @@ impl Mutation { pb } - /// Returns a `Some` if the value can be determined by this mutation. Otherwise, returns `None`. fn get_value(&self) -> MutationValue { match self { Mutation::Put(value) => MutationValue::Determined(Some(value.clone())),