Remove unnecessary cast.

This commit is contained in:
Rene Gollent
2013-04-27 14:04:35 -04:00
parent 8a9423ee95
commit 874abbdaaf
@@ -132,7 +132,7 @@ AbstractArrayValueNode::CreateChildrenInRange(int32 lowIndex,
}
// create children for the array elements
for (int32 i = lowIndex; i <= (int32)highIndex; i++) {
for (int32 i = lowIndex; i <= highIndex; i++) {
BString name(Name());
name << '[' << i << ']';
if (name.Length() <= Name().Length())