mirror of
https://github.com/ppy/osu
synced 2024-12-16 11:56:31 +00:00
remove braces
Co-authored-by: Salman Ahmed <frenzibyte@gmail.com>
This commit is contained in:
parent
c789163d01
commit
8104b15874
@ -27,6 +27,6 @@ namespace osu.Game.Online.API.Requests
|
||||
Ruleset = ruleset;
|
||||
}
|
||||
|
||||
protected override string Target => (userIdentifier != null) ? $@"users/{userIdentifier}/{Ruleset?.ShortName}" : $@"me/{Ruleset?.ShortName}";
|
||||
protected override string Target => userIdentifier != null ? $@"users/{userIdentifier}/{Ruleset?.ShortName}" : $@"me/{Ruleset?.ShortName}";
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user