mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Fix formatting issues
This commit is contained in:
@ -23,8 +23,8 @@ namespace osu.Game.Tournament.Components
|
||||
/// </summary>
|
||||
public string FlagName
|
||||
{
|
||||
get { return flagName ?? Acronym?.Substring(0, 2); }
|
||||
set { flagName = value; }
|
||||
get => flagName ?? Acronym?.Substring(0, 2);
|
||||
set => flagName = value;
|
||||
}
|
||||
|
||||
private string acronym;
|
||||
@ -34,8 +34,8 @@ namespace osu.Game.Tournament.Components
|
||||
/// </summary>
|
||||
public string Acronym
|
||||
{
|
||||
get { return acronym ?? FullName?.Substring(0, 3); }
|
||||
set { acronym = value; }
|
||||
get => acronym ?? FullName?.Substring(0, 3);
|
||||
set => acronym = value;
|
||||
}
|
||||
|
||||
[JsonProperty]
|
||||
|
Reference in New Issue
Block a user