Remove NULL path check so we can create new .order files if they do not exist.

SVN revision: 29399
This commit is contained in:
Christopher Michael 2007-04-05 23:14:25 +00:00
parent c4297e12f4
commit e8aa8ed20b
1 changed files with 0 additions and 2 deletions

View File

@ -35,8 +35,6 @@ e_order_new(const char *path)
{
E_Order *eo;
if ((!path) || (!ecore_file_exists(path))) return NULL;
eo = E_OBJECT_ALLOC(E_Order, E_ORDER_TYPE, _e_order_free);
if (!eo) return NULL;