summaryrefslogtreecommitdiff
path: root/src/chain.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-07 00:03:58 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-07 00:03:58 -0400
commite8d24094304a457fabfb327c8fa180db0d9c85d1 (patch)
tree5f531c9b37ab6789343d9f4e03396be36b8fa8c4 /src/chain.cc
parent1b9e7fa7be4b65dfe9c07f3ca25c2fceb23195aa (diff)
downloadfork-ledger-e8d24094304a457fabfb327c8fa180db0d9c85d1.tar.gz
fork-ledger-e8d24094304a457fabfb327c8fa180db0d9c85d1.tar.bz2
fork-ledger-e8d24094304a457fabfb327c8fa180db0d9c85d1.zip
Removed --reconcile and --reconcile-date.
Diffstat (limited to 'src/chain.cc')
-rw-r--r--src/chain.cc14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/chain.cc b/src/chain.cc
index 1e919c5d..964e3aea 100644
--- a/src/chain.cc
+++ b/src/chain.cc
@@ -32,7 +32,6 @@
#include "chain.h"
#include "report.h"
#include "filters.h"
-#include "reconcile.h"
namespace ledger {
@@ -63,19 +62,6 @@ xact_handler_ptr chain_xact_handlers(report_t& report,
// from the running total.
handler.reset(new calc_xacts(handler));
-#if 0
- // reconcile_xacts will pass through only those xacts which can be
- // reconciled to a given balance (calculated against the xacts which it
- // receives).
- if (! report.reconcile_balance.empty()) {
- date_t cutoff = CURRENT_DATE();
- if (! report.reconcile_date.empty())
- cutoff = parse_date(report.reconcile_date);
- handler.reset(new reconcile_xacts
- (handler, value_t(report.reconcile_balance), cutoff));
- }
-#endif
-
// filter_xacts will only pass through xacts matching the
// `secondary_predicate'.
if (report.HANDLED(only_))