Resharper cleanup

This commit is contained in:
JustArchi
2017-04-05 16:59:48 +02:00
parent 2199172244
commit 7c8d7b5ada
33 changed files with 332 additions and 223 deletions

View File

@@ -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);