Skip to content

Commit 83dad5b

Browse files
committed
Prefix any unused method arguments with an underscore
1 parent 8757701 commit 83dad5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/onelogin/ruby-saml/response.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ def validate_issuer
727727
# @return [Boolean] True if the SessionNotOnOrAfter of the AuthnStatement is valid, otherwise (when expired) False if soft=True
728728
# @raise [ValidationError] if soft == false and validation fails
729729
#
730-
def validate_session_expiration(soft = true)
730+
def validate_session_expiration(_soft = true)
731731
return true if session_expires_at.nil?
732732

733733
now = Time.now.utc

0 commit comments

Comments
 (0)