mirror of
https://github.com/osukey/osukey.git
synced 2025-05-30 01:47:30 +09:00
Try satisfying AppVeyor
This commit is contained in:
parent
71c04f4605
commit
39224931f8
@ -62,6 +62,6 @@ namespace osu.Game.Graphics
|
|||||||
|
|
||||||
private void updateTime() => Format();
|
private void updateTime() => Format();
|
||||||
|
|
||||||
public virtual string TooltipText => string.Format("{0:d MMMM yyyy H:mm \"UTC\"z}", date);
|
public virtual string TooltipText => string.Format($"{date:d MMMM yyyy H:mm \"UTC\"z}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,8 +2,6 @@
|
|||||||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Text;
|
|
||||||
|
|
||||||
namespace osu.Game.Graphics
|
namespace osu.Game.Graphics
|
||||||
{
|
{
|
||||||
@ -16,8 +14,8 @@ namespace osu.Game.Graphics
|
|||||||
this.date = date;
|
this.date = date;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override string Format() => Text = string.Format("{0:MMMM yyyy}", date);
|
protected override string Format() => Text = string.Format($"{date:MMMM yyyy}");
|
||||||
|
|
||||||
public override string TooltipText => string.Format("{0:d MMMM yyyy}", date);
|
public override string TooltipText => string.Format($"{date:d MMMM yyyy}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user