Fixed cast exception

This commit is contained in:
Jeffery Thompson
2017-10-06 13:23:03 -04:00
parent 4c4a7c2918
commit 8cbd3493bb

View File

@@ -260,7 +260,7 @@ namespace ICD.Common.Utils
} }
catch (FileNotFoundException) catch (FileNotFoundException)
{ {
return Enumerable.Empty<object>(); return Enumerable.Empty<T>();
} }
#endif #endif
} }