diff --git a/src/parser/PajeParser/ParserEventPaje.cpp b/src/parser/PajeParser/ParserEventPaje.cpp index 49d5790c0e95acc8561bc10ba15343cbf41f3324..828920549b4ce4b54f5825fa620d637cf648d2b6 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;