From 306e16fbb845bbb13b0d30f0327cf37c78ae1395 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20W=C3=B6hrl?= Date: Tue, 20 Dec 2016 09:29:48 +0100 Subject: [PATCH] fix duplicate comma --- csharp/Facebook.Yoga/YogaValue.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csharp/Facebook.Yoga/YogaValue.cs b/csharp/Facebook.Yoga/YogaValue.cs index 7e1acba8..9e2bc258 100644 --- a/csharp/Facebook.Yoga/YogaValue.cs +++ b/csharp/Facebook.Yoga/YogaValue.cs @@ -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); } } -} \ No newline at end of file +}