diff options
author | Matthew Fernandez <matthew.fernandez@gmail.com> | 2017-10-25 17:55:45 -0700 |
---|---|---|
committer | Matthew Fernandez <matthew.fernandez@gmail.com> | 2017-10-25 17:55:45 -0700 |
commit | ea9867f51a4e1bab0455d5fe974ed731ddfee26c (patch) | |
tree | 48fa7c8d789ecce1ce7390a0a22681865627a177 /libbe/storage | |
parent | 9a057df440a65ba91a765c31a3575819f2f85f53 (diff) | |
download | bugseverywhere-ea9867f51a4e1bab0455d5fe974ed731ddfee26c.tar.gz |
remove now-unused method _vcs_is_versioned
Diffstat (limited to 'libbe/storage')
-rw-r--r-- | libbe/storage/vcs/base.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libbe/storage/vcs/base.py b/libbe/storage/vcs/base.py index 1bd4e4c..b4df3f6 100644 --- a/libbe/storage/vcs/base.py +++ b/libbe/storage/vcs/base.py @@ -429,14 +429,6 @@ class VCS (libbe.storage.base.VersionedStorage): """ pass - def _vcs_is_versioned(self, path): - """ - Return true if a path is under version control, False - otherwise. You only need to set this if the VCS goes about - dumping VCS-specific files into the .be directory. - """ - raise NotImplementedError - def _vcs_get_file_contents(self, path, revision=None): """ Get the file contents as they were in a given revision. |