Remove my testing code. oops.

This commit is contained in:
Michael Bucari-Tovo 2022-05-14 20:47:13 -06:00
parent 49d10273a6
commit 341678d979

View File

@ -14,20 +14,6 @@ namespace LibationWinForms
{
productsGrid.LiberateClicked += (_, lb) => processBookQueue1.AddDownloadDecrypt(lb);
processBookQueue1.popoutBtn.Click += ProcessBookQueue1_PopOut;
Task.Run(() =>
{
Task.Delay(3000).Wait();
var lb = ApplicationServices.DbContexts.GetLibrary_Flat_NoTracking().Select(lb => lb.Book).ToList();
foreach (var b in lb)
{
b.UserDefinedItem.BookStatus = DataLayer.LiberatedStatus.NotLiberated;
}
LibraryCommands.UpdateUserDefinedItem(lb);
});
}
int WidthChange = 0;