diff options
-rw-r--r-- | src/engine/Machine.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/engine/Machine.cpp b/src/engine/Machine.cpp index 73eba15..3e5cf4d 100644 --- a/src/engine/Machine.cpp +++ b/src/engine/Machine.cpp @@ -408,7 +408,6 @@ Machine::write_state(Sord::Model& model) Sord::Curie(model.world(), "machina:Machine")); for (Nodes::const_iterator n = _nodes.begin(); n != _nodes.end(); ++n) { - (*n)->write_state(model); if ((*n)->is_initial()) { @@ -423,7 +422,6 @@ Machine::write_state(Sord::Model& model) } for (Nodes::const_iterator n = _nodes.begin(); n != _nodes.end(); ++n) { - for (Node::Edges::const_iterator e = (*n)->edges().begin(); e != (*n)->edges().end(); ++e) { |