@@ -147,11 +147,11 @@ [obj retain]; return o; } -- remove: (of_list_object_t*)listobj +- (void)remove: (of_list_object_t*)listobj { if (listobj->prev != NULL) listobj->prev->next = listobj->next; if (listobj->next != NULL) listobj->next->prev = listobj->prev; @@ -164,12 +164,10 @@ count--; [listobj->object release]; [self freeMemory: listobj]; - - return self; } - (size_t)count { return count;