Formatting: Add semi-colons to CGContextCanvas.j

This commit is contained in:
daniel
2018-04-03 12:11:57 -07:00
parent 7cda21b60f
commit 0fc3eb38f1
+2 -2
View File
@@ -557,14 +557,14 @@ CGContextConcatCTM = function(aContext, anAffineTransform)
b = VT.b;
c = VT.c;
d = VT.d;
scale_rotate(a, b, c, d)
scale_rotate(a, b, c, d);
S.a *= sx;
S.d *= sy;
a = U.a;
b = U.b;
c = U.c;
d = U.d;
rotate_scale(a, b, c, d)
rotate_scale(a, b, c, d);
sx = S.a * sx;
sy = S.d * sy;
}