File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -306,11 +306,10 @@ def single_signon_service_url(binding_priority = nil)
306306 binding = single_signon_service_binding ( binding_priority )
307307 return if binding . nil?
308308
309- node = @idpsso_descriptor . at_xpath (
309+ @idpsso_descriptor . at_xpath (
310310 "md:SingleSignOnService[@Binding=\" #{ binding } \" ]/@Location" ,
311311 SamlMetadata ::NAMESPACE
312- )
313- node &.value
312+ ) &.value
314313 end
315314
316315 # @param binding_priority [String|Array<String>] The prioritized list of Binding values to select. Will select first value if nil.
@@ -320,11 +319,10 @@ def single_logout_service_url(binding_priority = nil)
320319 binding = single_logout_service_binding ( binding_priority )
321320 return if binding . nil?
322321
323- node = @idpsso_descriptor . at_xpath (
322+ @idpsso_descriptor . at_xpath (
324323 "md:SingleLogoutService[@Binding=\" #{ binding } \" ]/@Location" ,
325324 SamlMetadata ::NAMESPACE
326- )
327- node &.value
325+ ) &.value
328326 end
329327
330328 # @param binding_priority [String|Array<String>] The prioritized list of Binding values to select. Will select first value if nil.
You can’t perform that action at this time.
0 commit comments