diff options
| author | Jonathan Yap <none@none> | 2014-03-07 15:08:58 -0500 | 
|---|---|---|
| committer | Jonathan Yap <none@none> | 2014-03-07 15:08:58 -0500 | 
| commit | 147c97dd0306f3df7e3f99b35c3098b56169a5dc (patch) | |
| tree | 78a4850058241d092dab5c02e92ab41df20a1dbd /indra | |
| parent | 2d6314f93fb5e7bf5f0494d8f9e746a647daa52b (diff) | |
STORM-2018 Added "else" per code review request.
Diffstat (limited to 'indra')
| -rwxr-xr-x | indra/newview/llviewermessage.cpp | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index 9d80e0c04c..90551d641b 100755 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -667,8 +667,7 @@ bool join_group_response(const LLSD& notification, const LLSD& response)  		sSavedGroupInvite[id] = notification;  		sSavedResponse[id] = response;  	} - -	if ("JoinedTooManyGroupsMember" == action) +	else if ("JoinedTooManyGroupsMember" == action)  	{  		S32 opt = LLNotificationsUtil::getSelectedOption(notification, response);  		if (0 == opt) // Join button pressed | 
