Skip to content

Commit dbbe7fb

Browse files
dotnet format
1 parent 3be2903 commit dbbe7fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/CommunityToolkit.Maui.MediaElement/Views/MediaManager.windows.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ protected virtual async partial ValueTask PlatformUpdateSource()
302302
}
303303
else if (MediaElement.Source is ResourceMediaSource resourceMediaSource)
304304
{
305-
if(string.IsNullOrWhiteSpace(resourceMediaSource.Path))
305+
if (string.IsNullOrWhiteSpace(resourceMediaSource.Path))
306306
{
307307
Logger.LogInformation("ResourceMediaSource Path is null or empty");
308308
return;
@@ -315,7 +315,7 @@ protected virtual async partial ValueTask PlatformUpdateSource()
315315
}
316316
}
317317
}
318-
318+
319319
protected virtual partial void PlatformUpdateShouldLoopPlayback()
320320
{
321321
if (Player is null)
@@ -366,7 +366,7 @@ static string GetFullAppPackageFilePath(in string filename)
366366
var normalizedFilename = NormalizePath(filename);
367367
return Path.Combine(AppPackageService.FullAppPackageFilePath, normalizedFilename);
368368

369-
static string NormalizePath(string filename) => filename.Replace('\\', Path.DirectorySeparatorChar).Replace('/', Path.DirectorySeparatorChar);
369+
static string NormalizePath(string filename) => filename.Replace('\\', Path.DirectorySeparatorChar).Replace('/', Path.DirectorySeparatorChar);
370370
}
371371

372372
static bool IsZero<TValue>(TValue numericValue) where TValue : INumber<TValue>

0 commit comments

Comments
 (0)