fix duplicate comma

This commit is contained in:
Lukas Wöhrl
2016-12-20 09:29:48 +01:00
committed by GitHub
parent 2424fc2b12
commit 306e16fbb8

View File

@@ -64,7 +64,7 @@ namespace Facebook.Yoga
return new YogaValue
{
Value = value,
isDefined = YogaConstants.IsUndefined(value) ? (byte)0 : (byte)1,,
isDefined = YogaConstants.IsUndefined(value) ? (byte)0 : (byte)1,
Unit = YogaUnit.Percent
};
}
@@ -74,4 +74,4 @@ namespace Facebook.Yoga
return Pixel(pixelValue);
}
}
}
}