Removed function that was only used for debugging. Defer object suicide until end of the method

--HG--
branch : avatar-pipeline
master
Brad Payne (Vir Linden) 2009-11-17 13:43:12 -05:00
parent 70b605e419
commit 7202227953
1 changed files with 2 additions and 8 deletions

View File

@ -95,7 +95,7 @@ public:
mCopyItems(copy_items),
mAppend(append)
{}
~LLOutfitObserver();
~LLOutfitObserver() {}
virtual void done();
void doWearCategory();
@ -105,12 +105,6 @@ protected:
bool mAppend;
};
LLOutfitObserver::~LLOutfitObserver()
{
llinfos << "~LLOutfitObserver" << llendl;
}
// BAP is LLOutfitObserver getting deleted here?
void LLOutfitObserver::done()
{
gInventory.removeObserver(this);
@ -236,7 +230,6 @@ void LLOutfitFetch::done()
// loop.
//dec_busy_count();
gInventory.removeObserver(this);
delete this;
// increment busy count and either tell the inventory to check &
// call done, or add this object to the inventory for observation.
@ -255,6 +248,7 @@ void LLOutfitFetch::done()
// will call done for us when everything is here.
gInventory.addObserver(outfit_observer);
}
delete this;
}
class LLUpdateAppearanceOnDestroy: public LLInventoryCallback