Skip to content

Commit

Permalink
[SHIBUI-808]
Browse files Browse the repository at this point in the history
tighten return
  • Loading branch information
jj committed Oct 2, 2018
1 parent 74969b2 commit 48e5769
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,7 @@ public class SPSSODescriptor extends SSODescriptor implements org.opensaml.saml.

@Override
public Boolean isAuthnRequestsSigned() {
if (isAuthnRequestsSigned == null) {
return false;
}
return isAuthnRequestsSigned;
return this.isAuthnRequestsSigned == null ? false : this.isAuthnRequestsSigned;
}

@Override
Expand Down

0 comments on commit 48e5769

Please sign in to comment.