diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-12 03:30:41 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-12 03:30:41 -0400 |
commit | c8cd2c468e202f07af187590dcdc07935b6918f6 (patch) | |
tree | 397504912c30945f3bc607778d3471c1a41ccdd7 /src/entry.cc | |
parent | bb243e2c5e68a04d0da4c8c20a74b5b8acf7ecdb (diff) | |
download | ledger-c8cd2c468e202f07af187590dcdc07935b6918f6.tar.gz ledger-c8cd2c468e202f07af187590dcdc07935b6918f6.tar.bz2 ledger-c8cd2c468e202f07af187590dcdc07935b6918f6.zip |
Re-enabled some code, and removed a bunch of deadwood.
Diffstat (limited to 'src/entry.cc')
-rw-r--r-- | src/entry.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/entry.cc b/src/entry.cc index 530d12fb..438cc5b0 100644 --- a/src/entry.cc +++ b/src/entry.cc @@ -40,9 +40,6 @@ entry_base_t::entry_base_t(const entry_base_t& e) : item_t(), journal(NULL) { TRACE_CTOR(entry_base_t, "copy"); -#if 0 - xacts.insert(xacts.end(), e.xacts.begin(), e.xacts.end()); -#endif } entry_base_t::~entry_base_t() @@ -255,10 +252,6 @@ entry_t::entry_t(const entry_t& e) : entry_base_t(e), code(e.code), payee(e.payee) { TRACE_CTOR(entry_t, "copy"); -#if 0 - foreach (xact_t * xact, xacts) - xact->entry = this; -#endif } void entry_t::add_xact(xact_t * xact) |