Skip to content

Commit

Permalink
Merge pull request #815 from ashanthamara/bug-fix-governance
Browse files Browse the repository at this point in the history
Changed a method return type from Boolean to boolean
  • Loading branch information
Inthirakumaaran authored Mar 27, 2024
2 parents 95517ca + d714a11 commit df8b934
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -723,9 +723,9 @@ public static String getCallbackURL(org.wso2.carbon.identity.recovery.model.Prop
* Get isAccessUrlAvailable property value.
*
* @param properties Properties array.
* @return Boolean value of the isAccessUrlAvailable property.
* @return boolean value of the isAccessUrlAvailable property.
*/
public static Boolean isAccessUrlAvailable(org.wso2.carbon.identity.recovery.model.Property[] properties) {
public static boolean isAccessUrlAvailable(org.wso2.carbon.identity.recovery.model.Property[] properties) {

if (properties != null) {
for (org.wso2.carbon.identity.recovery.model.Property property : properties) {
Expand Down

0 comments on commit df8b934

Please sign in to comment.