1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-13 21:57:30 -05:00

remove unneeded null check

This commit is contained in:
Nick Krantz
2025-05-21 09:33:09 -05:00
parent 2d45585beb
commit e2df7755e6

View File

@ -84,11 +84,6 @@ public class ChangePasswordUriController : Controller
}
}
if (changePasswordUri == null)
{
return Ok(new ChangePasswordUriResponse(changePasswordUri));
}
return Ok(new ChangePasswordUriResponse(changePasswordUri));
}
}