Fix accidental semicolon

This commit is contained in:
Saikat Chakrabarti
2014-02-20 17:30:27 -08:00
parent 9e61991ad2
commit f8ef6ab397
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3142,7 +3142,7 @@ setBoundsOrigin:
{
for (var i = 0; i < themeValues.length; ++i)
{
var attributeValueState = themeValues[i];
var attributeValueState = themeValues[i],
attribute = attributeValueState[0],
value = attributeValueState[1],
state = attributeValueState[2];
+1 -1
View File
@@ -221,7 +221,7 @@ var ItemSizes = { },
{
for (var i = 0; i < themeValues.length; ++i)
{
var attributeValueState = themeValues[i];
var attributeValueState = themeValues[i],
attribute = attributeValueState[0],
value = attributeValueState[1],
state = attributeValueState[2];