mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
A few more throwaway variable syntax updated
This commit is contained in:
@@ -117,7 +117,7 @@ public class AdministrationService : INService
|
||||
}
|
||||
else
|
||||
{
|
||||
DeleteMessagesOnCommandChannels.TryRemove(chId, out var _);
|
||||
DeleteMessagesOnCommandChannels.TryRemove(chId, out _);
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -507,7 +507,7 @@ public sealed class LogCommandService : ILogCommandService, IReadyExecutor
|
||||
|
||||
private bool IsRoleDeleted(ulong roleId)
|
||||
{
|
||||
var isDeleted = _memoryCache.TryGetValue(GetRoleDeletedKey(roleId), out var _);
|
||||
var isDeleted = _memoryCache.TryGetValue(GetRoleDeletedKey(roleId), out _);
|
||||
return isDeleted;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user