Trim unnecessary raw string prefixes

This commit is contained in:
Bartłomiej Dach 2020-03-21 14:28:23 +01:00
parent 299ea23612
commit ce47617476
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ namespace osu.Game.Overlays.Profile.Header.Components
private class RankGraphTooltip : UserGraphTooltip
{
public RankGraphTooltip()
: base(@"Global Ranking")
: base("Global Ranking")
{
}

View File

@ -18,7 +18,7 @@ namespace osu.Game.Overlays.Profile.Sections.Historical
/// <summary>
/// Text describing the value being plotted on the graph, which will be displayed as a prefix to the value in the <see cref="HistoryGraphTooltip"/>.
/// </summary>
public string TooltipCounterName { get; set; } = @"Plays";
public string TooltipCounterName { get; set; } = "Plays";
protected override float GetDataPointHeight(long playCount) => playCount;