mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 21:24:16 +01:00
chore: fix some warnings
This commit is contained in:
parent
02d19df0f7
commit
b1d927ab8f
2 changed files with 2 additions and 2 deletions
|
|
@ -5,6 +5,7 @@ using System.Linq;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
using Dalamud.Game.Gui;
|
using Dalamud.Game.Gui;
|
||||||
using Dalamud.Game.Gui.Toast;
|
using Dalamud.Game.Gui.Toast;
|
||||||
using Dalamud.Game.Libc;
|
using Dalamud.Game.Libc;
|
||||||
|
|
@ -200,7 +201,6 @@ namespace Dalamud.Game
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Run given function in upcoming Framework.Tick call.
|
/// Run given function in upcoming Framework.Tick call.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <typeparam name="T">Return type.</typeparam>
|
|
||||||
/// <param name="action">Function to call.</param>
|
/// <param name="action">Function to call.</param>
|
||||||
/// <param name="delay">Wait for given timespan before calling this function.</param>
|
/// <param name="delay">Wait for given timespan before calling this function.</param>
|
||||||
/// <param name="delayTicks">Count given number of Framework.Tick calls before calling this function. This takes precedence over delay parameter.</param>
|
/// <param name="delayTicks">Count given number of Framework.Tick calls before calling this function. This takes precedence over delay parameter.</param>
|
||||||
|
|
|
||||||
|
|
@ -1469,7 +1469,7 @@ namespace Dalamud.Interface.Internal.Windows
|
||||||
for (var i = 0; i < 100; i++)
|
for (var i = 0; i < 100; i++)
|
||||||
{
|
{
|
||||||
token.ThrowIfCancellationRequested();
|
token.ThrowIfCancellationRequested();
|
||||||
Thread.Sleep(1);
|
await Task.Delay(1);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue