scm: subversion: code clean up model.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5429 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
5bb06ae42d
commit
a7aee902f2
|
@ -251,9 +251,9 @@ module Redmine
|
|||
return nil if $? && $?.exitstatus != 0
|
||||
blame
|
||||
end
|
||||
|
||||
|
||||
private
|
||||
|
||||
|
||||
def credentials_string
|
||||
str = ''
|
||||
str << " --username #{shell_quote(@login)}" unless @login.blank?
|
||||
|
@ -261,9 +261,10 @@ module Redmine
|
|||
str << " --no-auth-cache --non-interactive"
|
||||
str
|
||||
end
|
||||
|
||||
|
||||
# Helper that iterates over the child elements of a xml node
|
||||
# MiniXml returns a hash when a single child is found or an array of hashes for multiple children
|
||||
# MiniXml returns a hash when a single child is found
|
||||
# or an array of hashes for multiple children
|
||||
def each_xml_element(node, name)
|
||||
if node && node[name]
|
||||
if node[name].is_a?(Hash)
|
||||
|
|
Loading…
Reference in New Issue