diff options
author | Ima Mechanique <ima.mechanique@secondlife.com> | 2013-02-14 18:34:13 +0000 |
---|---|---|
committer | Ima Mechanique <ima.mechanique@secondlife.com> | 2013-02-14 18:34:13 +0000 |
commit | 14b00fc6bfc298b423e03e2efe6ca811798043ee (patch) | |
tree | 8e09d59970371422a14b952005b629ea389e0812 /indra/llui | |
parent | 9db5ed51f00f98f2567882d525d9d547cac3ed62 (diff) |
STORM-1831 Removing an unnecessary assignment.
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/llkeywords.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/llui/llkeywords.cpp b/indra/llui/llkeywords.cpp index d738d5127f..5305826c8a 100644 --- a/indra/llui/llkeywords.cpp +++ b/indra/llui/llkeywords.cpp @@ -145,8 +145,7 @@ std::string LLKeywords::getArguments(LLSD& arguments) LLSD::map_iterator argsIt = arguments.beginMap(); for ( ; argsIt != arguments.endMap(); ++argsIt) { - LLSD arg = argsIt->second; - args += arg.get("type").asString() + " " + argsIt->first; + args += argsIt->second.get("type").asString() + " " + argsIt->first; if (count-- > 1) { args += ", "; |