Fix assert to verify the correct variable.

Original pull request: gh-170.
Closes: gh-170.
This commit is contained in:
Pedro Castineiras
2017-11-13 10:35:15 -05:00
committed by Mark Paluch
parent 9b74d1198a
commit c355c0e73f

View File

@@ -121,7 +121,7 @@ public class AppIdAuthenticationOptions {
*/
public AppIdAuthenticationOptionsBuilder appId(String appId) {
Assert.hasText(path, "AppId must not be empty");
Assert.hasText(appId, "AppId must not be empty");
this.appId = appId;
return this;