summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-12-07 01:05:08 -0500
committerBen Boeckel <MathStuf@gmail.com>2008-12-07 01:05:08 -0500
commit9104f0cb6912823cc6dd141c8b1a97c2713df4a9 (patch)
tree22f5532396812f4cff174909b2e0482836c4f4f8
parent16094aa75f4d3bf827cdf7a4213f88e00df942d5 (diff)
downloadsigen-9104f0cb6912823cc6dd141c8b1a97c2713df4a9.tar.gz
sigen-9104f0cb6912823cc6dd141c8b1a97c2713df4a9.tar.xz
sigen-9104f0cb6912823cc6dd141c8b1a97c2713df4a9.zip
Removed commented code that macros replaced
-rw-r--r--sigmod/CoinList.cpp19
1 files changed, 0 insertions, 19 deletions
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();
}