# HG changeset patch # User Patrick Mezard # Date 1265149278 -3600 # Node ID 2f5c7cef1723495efcb322117dedd3a5c7425d78 # Parent bb00f7ca5b8c78070661bd7eb9fd2ae5a56474cc svnwrap: drop unused fetch_all_files_to_dir() diff --git a/hgsubversion/svnwrap/svn_ctypes_wrapper.py b/hgsubversion/svnwrap/svn_ctypes_wrapper.py --- a/hgsubversion/svnwrap/svn_ctypes_wrapper.py +++ b/hgsubversion/svnwrap/svn_ctypes_wrapper.py @@ -107,9 +107,6 @@ class SubversionRepo(object): def proplist(self, path, revision, recurse=False): raise NotImplementedError - def fetch_all_files_to_dir(self, path, revision, checkout_path): - raise NotImplementedError - class SubversionRepoCanNotReplay(Exception): """Exception raised when the svn server is too old to have replay. """ diff --git a/hgsubversion/svnwrap/svn_swig_wrapper.py b/hgsubversion/svnwrap/svn_swig_wrapper.py --- a/hgsubversion/svnwrap/svn_swig_wrapper.py +++ b/hgsubversion/svnwrap/svn_swig_wrapper.py @@ -603,12 +603,6 @@ class SubversionRepo(object): return {} return pl[0][1] - def fetch_all_files_to_dir(self, path, revision, checkout_path): - rev = optrev(revision) - client.export3(self.svn_url+'/'+path, checkout_path, rev, - rev, True, True, True, 'LF', # should be 'CRLF' on win32 - self.client_context, self.pool) - def list_files(self, dirpath, revision): """List the content of a directory at a given revision, recursively.