diff options
Diffstat (limited to 'subversion/libsvn_ra_serf/update.c')
| -rw-r--r-- | subversion/libsvn_ra_serf/update.c | 19 | 
1 files changed, 0 insertions, 19 deletions
| diff --git a/subversion/libsvn_ra_serf/update.c b/subversion/libsvn_ra_serf/update.c index 06a16c06effd..88488ff206f5 100644 --- a/subversion/libsvn_ra_serf/update.c +++ b/subversion/libsvn_ra_serf/update.c @@ -329,9 +329,6 @@ struct report_context_t {       files/dirs? */    svn_boolean_t add_props_included; -  /* Path -> lock token mapping. */ -  apr_hash_t *lock_path_tokens; -    /* Path -> const char *repos_relpath mapping */    apr_hash_t *switched_paths; @@ -2248,8 +2245,6 @@ end_report(svn_ra_serf__xml_parser_t *parser,                                          info->pool);          } -      info->lock_token = svn_hash_gets(ctx->lock_path_tokens, info->name); -        if (info->lock_token && !info->fetch_props)          info->fetch_props = TRUE; @@ -2578,13 +2573,6 @@ set_path(void *report_baton,    SVN_ERR(svn_io_file_write_full(report->body_file, buf->data, buf->len,                                   NULL, pool)); -  if (lock_token) -    { -      svn_hash_sets(report->lock_path_tokens, -                    apr_pstrdup(report->pool, path), -                    apr_pstrdup(report->pool, lock_token)); -    } -    return SVN_NO_ERROR;  } @@ -2660,12 +2648,6 @@ link_path(void *report_baton,    if (!*path)      report->root_is_switched = TRUE; -  if (lock_token) -    { -      svn_hash_sets(report->lock_path_tokens, -                    path, apr_pstrdup(report->pool, lock_token)); -    } -    return APR_SUCCESS;  } @@ -3193,7 +3175,6 @@ make_update_reporter(svn_ra_session_t *ra_session,    report->ignore_ancestry = ignore_ancestry;    report->send_copyfrom_args = send_copyfrom_args;    report->text_deltas = text_deltas; -  report->lock_path_tokens = apr_hash_make(report->pool);    report->switched_paths = apr_hash_make(report->pool);    report->source = src_path; | 
