summaryrefslogtreecommitdiff
path: root/src/CuTNetLib/cuCompDisc.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/CuTNetLib/cuCompDisc.cc')
-rw-r--r--src/CuTNetLib/cuCompDisc.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/CuTNetLib/cuCompDisc.cc b/src/CuTNetLib/cuCompDisc.cc
index 9eb08a9..f942472 100644
--- a/src/CuTNetLib/cuCompDisc.cc
+++ b/src/CuTNetLib/cuCompDisc.cc
@@ -49,14 +49,12 @@ namespace TNet
CuDiscrete::
Update()
{
- printf("update+\n");
for(int i=0; i<mBlocks.size(); i++)
if ( mBlocks[i]->IsUpdatable() )
{
CuUpdatableComponent& rComp = dynamic_cast<CuUpdatableComponent&>(*mBlocks[i]);
rComp.Update();
}
- printf("update-\n");
}