Removed some unneeded methods, due to the previous refactor involving shared_ptr objects. They no longer require some special overloads which "delete" the objects in the cache.

This commit is contained in:
Jonathan Thomas
2012-10-14 21:09:22 -05:00
parent 617088cebf
commit 48bef6b566
7 changed files with 15 additions and 52 deletions

View File

@@ -73,9 +73,6 @@ void ImageReader::Close()
// Close all objects, if reader is 'open'
if (is_open)
{
// Deallocate frame
image_frame.reset();
// Mark as "closed"
is_open = false;
}