From 4ceae16a242cbdf1645db25e00e182f12e624f14 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 8 Sep 2014 00:12:57 -0400 Subject: [PATCH] CmdBurndown - Removed TDB2::commit. --- src/commands/CmdBurndown.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/commands/CmdBurndown.cpp b/src/commands/CmdBurndown.cpp index 481b267a7..18639e6f3 100644 --- a/src/commands/CmdBurndown.cpp +++ b/src/commands/CmdBurndown.cpp @@ -1031,7 +1031,6 @@ int CmdBurndownMonthly::execute (std::string& output) Filter filter; std::vector filtered; filter.subset (filtered); - context.tdb2.commit (); // Create a chart, scan the tasks, then render. Chart chart ('M'); @@ -1060,7 +1059,6 @@ int CmdBurndownWeekly::execute (std::string& output) Filter filter; std::vector filtered; filter.subset (filtered); - context.tdb2.commit (); // Create a chart, scan the tasks, then render. Chart chart ('W'); @@ -1089,7 +1087,6 @@ int CmdBurndownDaily::execute (std::string& output) Filter filter; std::vector filtered; filter.subset (filtered); - context.tdb2.commit (); // Create a chart, scan the tasks, then render. Chart chart ('D');