From da9442b3238ca25b11932fd6d437964ab2f5be7b Mon Sep 17 00:00:00 2001
From: Kelly Washington <kelly@lindenlab.com>
Date: Thu, 24 Jan 2013 09:45:31 -0800
Subject: [PATCH] MAINT-2277 Yellow "fence" (selection) of the parcel doesn't
 update after selecting the other parcel * Removed bogus check on matching
 parcel data coming in.

---
 indra/newview/llviewerparcelmgr.cpp | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/indra/newview/llviewerparcelmgr.cpp b/indra/newview/llviewerparcelmgr.cpp
index 33f632b25d3..77e382b8c71 100644
--- a/indra/newview/llviewerparcelmgr.cpp
+++ b/indra/newview/llviewerparcelmgr.cpp
@@ -1540,17 +1540,6 @@ void LLViewerParcelMgr::processParcelProperties(LLMessageSystem *msg, void **use
 	// Actually extract the data.
 	if (parcel)
 	{
-		if (sequence_id == SELECTED_PARCEL_SEQ_ID
-			&& parcel->getLocalID() != INVALID_PARCEL_ID
-			&& parcel->getLocalID() != local_id)
-		{
-			// The parcel has a valid parcel ID but it doesn't match the parcel
-			// for the data received.
-			llinfos << "Expecting data for parcel " << parcel->getLocalID() \
-					<< " but got data for parcel " << local_id << llendl;
-			return;
-		}
-
 		parcel->init(owner_id,
 			FALSE, FALSE, FALSE,
 			claim_date, claim_price_per_meter, rent_price_per_meter,
-- 
GitLab