diff --git a/indra/llui/llfolderviewitem.cpp b/indra/llui/llfolderviewitem.cpp
index 31202f02bf1817d8ed3c42a61bca75b7d7927dfc..9f6ceac768ca9e55ce135663cdab061b294fded7 100644
--- a/indra/llui/llfolderviewitem.cpp
+++ b/indra/llui/llfolderviewitem.cpp
@@ -1608,7 +1608,7 @@ void LLFolderViewFolder::destroyView()
 
 // extractItem() removes the specified item from the folder, but
 // doesn't delete it.
-void LLFolderViewFolder::extractItem( LLFolderViewItem* item)
+void LLFolderViewFolder::extractItem( LLFolderViewItem* item )
 {
 	if (item->isSelected())
 		getRoot()->clearSelection();
@@ -1631,13 +1631,7 @@ void LLFolderViewFolder::extractItem( LLFolderViewItem* item)
 		mItems.erase(it);
 	}
 	//item has been removed, need to update filter
-    LLFolderViewModelItem* parent_model = getViewModelItem();
-    LLFolderViewModelItem* child_model = item->getViewModelItem();
-    if (child_model->getParent() == parent_model)
-    {
-        // in some cases model does not belong to parent view, is shared between views
-        parent_model->removeChild(child_model);
-    }
+	getViewModelItem()->removeChild(item->getViewModelItem());
 	//because an item is going away regardless of filter status, force rearrange
 	requestArrange();
 	removeChild(item);
diff --git a/indra/llui/llfolderviewitem.h b/indra/llui/llfolderviewitem.h
index 3bfc7ee8cf836825c0b160ebc847ed0e7d2db000..da09d139e98e270e1ee1e4456fafacd4e5b0561c 100644
--- a/indra/llui/llfolderviewitem.h
+++ b/indra/llui/llfolderviewitem.h
@@ -387,7 +387,7 @@ class LLFolderViewFolder : public LLFolderViewItem
 
 	// extractItem() removes the specified item from the folder, but
 	// doesn't delete it.
-	virtual void extractItem( LLFolderViewItem* item);
+	virtual void extractItem( LLFolderViewItem* item );
 
 	// This function is called by a child that needs to be resorted.
 	void resort(LLFolderViewItem* item);
diff --git a/indra/llui/llfolderviewmodel.h b/indra/llui/llfolderviewmodel.h
index 8684c7167226260bf86841ddca77118ab8ea848d..f4ddfa8f18f8cf7b8a112bde85d65a12ee9123ee 100644
--- a/indra/llui/llfolderviewmodel.h
+++ b/indra/llui/llfolderviewmodel.h
@@ -218,8 +218,7 @@ class LLFolderViewModelItem : public LLRefCount, public LLTrace::MemTrackable<LL
 	virtual S32 getSortVersion() = 0;
 	virtual void setSortVersion(S32 version) = 0;
 	virtual void setParent(LLFolderViewModelItem* parent) = 0;
-    virtual LLFolderViewModelItem* getParent() const = 0;
-	virtual bool hasParent() const = 0;
+	virtual bool hasParent() = 0;
 
 protected:
 
@@ -359,8 +358,7 @@ class LLFolderViewModelItemCommon : public LLFolderViewModelItem
 
 protected:
 	virtual void setParent(LLFolderViewModelItem* parent) { mParent = parent; }
-    virtual LLFolderViewModelItem* getParent() const { return mParent; }
-	virtual bool hasParent() const { return mParent != NULL; }
+	virtual bool hasParent() { return mParent != NULL; }
 
 	S32							mSortVersion;
 	bool						mPassedFilter;