summaryrefslogtreecommitdiffstats
path: root/lib/redmine/scm/adapters
diff options
context:
space:
mode:
Diffstat (limited to 'lib/redmine/scm/adapters')
-rw-r--r--lib/redmine/scm/adapters/bazaar_adapter.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/redmine/scm/adapters/bazaar_adapter.rb b/lib/redmine/scm/adapters/bazaar_adapter.rb
index daea57220..bf8ba5fb6 100644
--- a/lib/redmine/scm/adapters/bazaar_adapter.rb
+++ b/lib/redmine/scm/adapters/bazaar_adapter.rb
@@ -85,7 +85,7 @@ module Redmine
end
info
rescue ScmCommandAborted
- return nil
+ nil
end
# Returns an Entries collection
@@ -124,7 +124,7 @@ module Redmine
end
entries.sort_by_name
rescue ScmCommandAborted
- return nil
+ nil
end
def revisions(path=nil, identifier_from=nil, identifier_to=nil, options={})
@@ -192,7 +192,7 @@ module Redmine
end
revisions
rescue ScmCommandAborted
- return nil
+ nil
end
def diff(path, identifier_from, identifier_to=nil)
@@ -228,7 +228,7 @@ module Redmine
end
cat
rescue ScmCommandAborted
- return nil
+ nil
end
def annotate(path, identifier=nil)
@@ -256,7 +256,7 @@ module Redmine
end
blame
rescue ScmCommandAborted
- return nil
+ nil
end
def self.branch_conf_path(path)