delete unused creation of list

This commit is contained in:
Ivan Hörler 2018-08-03 11:59:26 +02:00
parent 28c308c5d2
commit 2f2f747f4b
1 changed files with 0 additions and 1 deletions

View File

@ -30,7 +30,6 @@ namespace EHEC_Server
using (EHEC_DBEntities ctx = new EHEC_DBEntities())
{
ctx.Configuration.ProxyCreationEnabled = false;
List<Result> list = new List<Result>();
return ctx.Results.ToList();
}
}