summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIma Mechanique <ima.mechanique@secondlife.com>2014-01-04 01:27:57 +0000
committerIma Mechanique <ima.mechanique@secondlife.com>2014-01-04 01:27:57 +0000
commitfd643f07c8a3e3f1cfb146684f2d68db4b4126e7 (patch)
tree0d0c086e20f981f3737f2a065857b80151300edc
parent7d4febe7bbadf6e597231d2a547f22d4bc37958e (diff)
storm-1831 In the LLSD, functions are in a <map> which makes sorting unnecessary (loading sorts them).
-rwxr-xr-xindra/newview/llpreviewscript.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/indra/newview/llpreviewscript.cpp b/indra/newview/llpreviewscript.cpp
index 41c172e629..aedf687f0d 100755
--- a/indra/newview/llpreviewscript.cpp
+++ b/indra/newview/llpreviewscript.cpp
@@ -440,11 +440,6 @@ void LLScriptEdCore::onRegionChangeInitialiseKeywords()
}
}
- // Case-insensitive dictionary sort for primary keywords. We don't sort the secondary
- // keywords. They're intelligently grouped in keywords.ini.
- // As we don't use keywords.ini, this is no longer true. Do we need to sort now?
- std::stable_sort( primary_keywords.begin(), primary_keywords.end(), LLSECKeywordCompare() );
-
for (std::vector<std::string>::const_iterator iter= primary_keywords.begin();
iter!= primary_keywords.end(); ++iter)
{