Skip to content

Commit 94942fb

Browse files
committed
Fix typo in postProcessXml input parameter name
1 parent 91fb559 commit 94942fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/src/main/java/com/onelogin/saml2/authn/AuthnRequest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,14 +129,14 @@ public AuthnRequest(Saml2Settings settings, boolean forceAuthn, boolean isPassiv
129129
* this class have already been initialised. Its default implementation simply
130130
* returns the input XML as-is, with no change.
131131
*
132-
* @param authRequestXml
132+
* @param authnRequestXml
133133
* the XML produced for this AuthnRequest by the standard
134134
* implementation provided by {@link AuthnRequest}
135135
* @return the post-processed XML for this AuthnRequest, which will then be
136136
* returned by any call to {@link #getAuthnRequestXml()}
137137
*/
138-
protected String postProcessXml(final String authRequestXml) {
139-
return authRequestXml;
138+
protected String postProcessXml(final String authnRequestXml) {
139+
return authnRequestXml;
140140
}
141141

142142
/**

0 commit comments

Comments
 (0)