From 00b9abbf8a3ec035e323e185f71bbd74e3be3f77 Mon Sep 17 00:00:00 2001 From: Mathieu Faverge <mathieu.faverge@inria.fr> Date: Tue, 10 Feb 2015 11:13:02 +0000 Subject: [PATCH] Cleanup commented code --- src/parser/PajeParser/ParserEventPaje.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/parser/PajeParser/ParserEventPaje.cpp b/src/parser/PajeParser/ParserEventPaje.cpp index 49d5790c..82892054 100644 --- a/src/parser/PajeParser/ParserEventPaje.cpp +++ b/src/parser/PajeParser/ParserEventPaje.cpp @@ -579,7 +579,6 @@ void ParserEventPaje::store_event(const PajeLine *line, case _PajeStartLink : { LinkType *temp_link_type = trace.search_link_type(type); - //EntityValue *temp_entity_value = trace.search_entity_value(value_string, temp_link_type); Container *temp_container = NULL; Container *temp_start_container = NULL; @@ -619,10 +618,9 @@ void ParserEventPaje::store_event(const PajeLine *line, case _PajeEndLink : { LinkType *temp_link_type = trace.search_link_type(type); - //EntityValue *temp_entity_value = trace.search_entity_value(value_string, temp_link_type); - Container *temp_container = NULL; Container *temp_end_container = NULL; + // temp_container if(_containers.find(container) != _containers.end()) { temp_container = _containers[container]; @@ -650,7 +648,7 @@ void ParserEventPaje::store_event(const PajeLine *line, Error::set(Error::VITE_ERR_UNKNOWN_CONTAINER + end_container.to_string(), line->_id, Error::VITE_ERRCODE_ERROR); } else{ - trace.end_link(time, temp_link_type, temp_container, temp_end_container, /*temp_entity_value, */key, extra_fields); + trace.end_link(time, temp_link_type, temp_container, temp_end_container, key, extra_fields); } } break; -- GitLab