summaryrefslogtreecommitdiffstats
path: root/app/models/repository/bazaar.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2014-02-02 00:40:59 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2014-02-02 00:40:59 +0000
commitd45bf0a83eb7687ae2fed9c6376e12650747a202 (patch)
treeb6ca40ba04b00ca7914af491717c90ce8a77a939 /app/models/repository/bazaar.rb
parentf2ec6f8d77ec1fd9f00ab1c24dc1379c70245f6b (diff)
downloadredmine-d45bf0a83eb7687ae2fed9c6376e12650747a202.tar.gz
redmine-d45bf0a83eb7687ae2fed9c6376e12650747a202.zip
scm: split Repository#entries (#14361)
git-svn-id: http://svn.redmine.org/redmine/trunk@12754 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/repository/bazaar.rb')
-rw-r--r--app/models/repository/bazaar.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/repository/bazaar.rb b/app/models/repository/bazaar.rb
index b7c4e9ef4..c1806805a 100644
--- a/app/models/repository/bazaar.rb
+++ b/app/models/repository/bazaar.rb
@@ -57,7 +57,7 @@ class Repository::Bazaar < Repository
scm.diff(path, rev, rev_to)
end
- def entries(path=nil, identifier=nil)
+ def scm_entries(path=nil, identifier=nil)
scm.bzr_path_encodig = log_encoding
entries = scm.entries(path, identifier)
if entries
@@ -80,9 +80,9 @@ class Repository::Bazaar < Repository
end
end
end
- load_entries_changesets(entries)
entries
end
+ protected :scm_entries
def fetch_changesets
scm.bzr_path_encodig = log_encoding