# # # patch "rcs_import.cc" # from [a68ac9120ab7e406e204ed822f6d173c4b4c4866] # to [e978d21af3826e8bbf83e5caad285f49dc3cf8c8] # ============================================================ --- rcs_import.cc a68ac9120ab7e406e204ed822f6d173c4b4c4866 +++ rcs_import.cc e978d21af3826e8bbf83e5caad285f49dc3cf8c8 @@ -394,12 +394,6 @@ cvs_history stack< shared_ptr > stk; stack< cvs_branchname > bstk; - // tag -> time, revision - // - // used to resolve the *last* revision which has a given tag - // applied; this is the revision which wins the tag. - map > resolved_tags; - file_path curr_file; cvs_path curr_file_interned; @@ -1620,27 +1614,6 @@ cluster_consumer::store_auxiliary_certs( { packet_db_writer dbw(app); - for (vector::const_iterator i = p.tags.begin(); - i != p.tags.end(); ++i) - { - map >::const_iterator j - = cvs.resolved_tags.find(*i); - - if (j != cvs.resolved_tags.end()) - { - if (j->second.first < p.time) - { - // move the tag forwards - cvs.resolved_tags.erase(*i); - cvs.resolved_tags.insert(make_pair(*i, make_pair(p.time, p.rid))); - } - } - else - { - cvs.resolved_tags.insert(make_pair(*i, make_pair(p.time, p.rid))); - } - } - string ac_str = cvs.authorclog_interner.lookup(p.authorclog); int i = ac_str.find("|||\n");