mirror of https://github.com/ppy/osu
Add missing nullability flag on CreateAccount return value
This commit is contained in:
parent
9ad38ab20e
commit
3562fddc27
|
@ -111,6 +111,6 @@ public interface IAPIProvider
|
|||
/// <param name="username">The username to create the account with.</param>
|
||||
/// <param name="password">The password to create the account with.</param>
|
||||
/// <returns>Any errors encoutnered during account creation.</returns>
|
||||
RegistrationRequest.RegistrationRequestErrors CreateAccount(string email, string username, string password);
|
||||
RegistrationRequest.RegistrationRequestErrors? CreateAccount(string email, string username, string password);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue