Skip to content

Commit

Permalink
avoid warning if no async calls are made in Tests.Program ...
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanmaierhofer committed Jul 23, 2024
1 parent b014ab1 commit 2a27e4b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Aardvark.Algodat.Tests/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2761,6 +2761,8 @@ V3d[] randomPoints(int n, Box3d bb)

public static async Task Main(string[] _)
{
await Task.CompletedTask; // avoid warning if no async methods are called here ...

//{
// var chunks = E57.Chunks(@"W:\Datasets\Vgm\Data\2024-04-30_bugreport\F_240205.e57", ParseConfig.Default);
// var i = 0;
Expand Down

0 comments on commit 2a27e4b

Please sign in to comment.