Async naming convention

This commit is contained in:
ClemensFischer 2025-01-26 20:23:42 +01:00
parent 2a4de62c45
commit 8948af0723
7 changed files with 37 additions and 37 deletions

View file

@ -136,7 +136,7 @@ namespace MapControl
{
return new GeoBitmap(
(BitmapSource)await ImageLoader.LoadImageAsync(sourcePath),
await ReadWorldFileMatrix(worldFilePath),
await ReadWorldFileMatrixAsync(worldFilePath),
null);
}
}
@ -144,7 +144,7 @@ namespace MapControl
return await LoadGeoTiffAsync(sourcePath);
}
private static async Task<Matrix> ReadWorldFileMatrix(string worldFilePath)
private static async Task<Matrix> ReadWorldFileMatrixAsync(string worldFilePath)
{
using (var fileStream = File.OpenRead(worldFilePath))
using (var streamReader = new StreamReader(fileStream))