8000 Stylize string as interpolated though it becomes a literal · dotnet/wpf@2d57793 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2d57793

Browse files
committed
Stylize string as interpolated though it becomes a literal
1 parent 591f163 commit 2d57793

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.DotNet.Wpf/src/PresentationCore/MS/internal/FontCache/FontSourceCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ private void SetFontSources()
105105
{
106106
if (_tryGetCompositeFontsOnly)
107107
{
108-
string[] files = Directory.GetFiles(_uri.LocalPath, "*" + Util.CompositeFontExtension);
108+
string[] files = Directory.GetFiles(_uri.LocalPath, $"*{Util.CompositeFontExtension}");
109109
fontSources = new List<IFontSource>(files.Length);
110110

111111
foreach (string file in files)

0 commit comments

Comments
 (0)
0