From 9104f0cb6912823cc6dd141c8b1a97c2713df4a9 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sun, 7 Dec 2008 01:05:08 -0500 Subject: Removed commented code that macros replaced --- sigmod/CoinList.cpp | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'sigmod/CoinList.cpp') diff --git a/sigmod/CoinList.cpp b/sigmod/CoinList.cpp index 4f0519e7..cd0b1c35 100644 --- a/sigmod/CoinList.cpp +++ b/sigmod/CoinList.cpp @@ -78,25 +78,6 @@ void Sigmod::CoinList::validate() TEST_SUB_RAW(species, "item species", object); } TEST_SUB_END(); -// foreach (CoinListObject* object, m_objects) -// { -// object->validate(); -// if (idChecker.contains(object->id())) -// emit(error(subclass("object", object->id()))); -// idChecker.insert(object->id()); -// if (object->type() == CoinListObject::Item) -// { -// if (itemChecker.contains(object->object())) -// emit(error(subclass("object item", object->id()))); -// itemChecker.insert(object->object()); -// } -// else if (object->type() == CoinListObject::Species) -// { -// if (speciesChecker.contains(object->object())) -// emit(error(subclass("object species", object->id()))); -// speciesChecker.insert(object->object()); -// } -// } TEST_END(); } -- cgit