Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 00b9abbf authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Cleanup commented code

parent 8609aad1
No related branches found
No related tags found
No related merge requests found
...@@ -579,7 +579,6 @@ void ParserEventPaje::store_event(const PajeLine *line, ...@@ -579,7 +579,6 @@ void ParserEventPaje::store_event(const PajeLine *line,
case _PajeStartLink : case _PajeStartLink :
{ {
LinkType *temp_link_type = trace.search_link_type(type); 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_container = NULL;
Container *temp_start_container = NULL; Container *temp_start_container = NULL;
...@@ -619,10 +618,9 @@ void ParserEventPaje::store_event(const PajeLine *line, ...@@ -619,10 +618,9 @@ void ParserEventPaje::store_event(const PajeLine *line,
case _PajeEndLink : case _PajeEndLink :
{ {
LinkType *temp_link_type = trace.search_link_type(type); 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_container = NULL;
Container *temp_end_container = NULL; Container *temp_end_container = NULL;
// temp_container // temp_container
if(_containers.find(container) != _containers.end()) { if(_containers.find(container) != _containers.end()) {
temp_container = _containers[container]; temp_container = _containers[container];
...@@ -650,7 +648,7 @@ void ParserEventPaje::store_event(const PajeLine *line, ...@@ -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); Error::set(Error::VITE_ERR_UNKNOWN_CONTAINER + end_container.to_string(), line->_id, Error::VITE_ERRCODE_ERROR);
} }
else{ 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; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment