changeset 543:2f5c7cef1723

svnwrap: drop unused fetch_all_files_to_dir()
author Patrick Mezard <pmezard@gmail.com>
date Tue, 02 Feb 2010 23:21:18 +0100
parents bb00f7ca5b8c
children 809c673bdd30
files hgsubversion/svnwrap/svn_ctypes_wrapper.py hgsubversion/svnwrap/svn_swig_wrapper.py
diffstat 2 files changed, 0 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- 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.
     """
--- 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.