mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-16 08:25:28 +00:00
Resharper cleanup
This commit is contained in:
@@ -68,7 +68,9 @@ namespace ArchiSteamFarm {
|
||||
|
||||
private MobileAuthenticator() { }
|
||||
|
||||
public void Dispose() => ConfirmationsSemaphore.Dispose();
|
||||
public void Dispose() {
|
||||
ConfirmationsSemaphore.Dispose();
|
||||
}
|
||||
|
||||
internal void CorrectDeviceID(string deviceID) {
|
||||
if (string.IsNullOrEmpty(deviceID)) {
|
||||
@@ -246,7 +248,9 @@ namespace ArchiSteamFarm {
|
||||
}
|
||||
}
|
||||
|
||||
internal void Init(Bot bot) => Bot = bot ?? throw new ArgumentNullException(nameof(bot));
|
||||
internal void Init(Bot bot) {
|
||||
Bot = bot ?? throw new ArgumentNullException(nameof(bot));
|
||||
}
|
||||
|
||||
internal static async Task OnTimeChanged() {
|
||||
await TimeSemaphore.WaitAsync().ConfigureAwait(false);
|
||||
|
||||
Reference in New Issue
Block a user