Removed some stray console writelines

This commit is contained in:
Master Kwoth
2016-04-12 03:28:44 +02:00
parent cc89d37ba5
commit 3150b2da6b
3 changed files with 62 additions and 38 deletions

View File

@ -23,7 +23,6 @@ namespace NadekoBot.Modules.Administration.Commands
{
var remList = DbHandler.Instance.GetAllRows<Reminder>();
Console.WriteLine(string.Join("\n-", remList.Select(r => r.When.ToString())));
reminders = remList.Select(StartNewReminder).ToList();
}