From 0fc3eb38f1db92562757bb34dc5a2cbd1fd1bbec Mon Sep 17 00:00:00 2001 From: daniel Date: Tue, 3 Apr 2018 12:11:57 -0700 Subject: [PATCH] Formatting: Add semi-colons to CGContextCanvas.j --- AppKit/CoreGraphics/CGContextCanvas.j | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AppKit/CoreGraphics/CGContextCanvas.j b/AppKit/CoreGraphics/CGContextCanvas.j index 628afd27e..3c2115dc4 100644 --- a/AppKit/CoreGraphics/CGContextCanvas.j +++ b/AppKit/CoreGraphics/CGContextCanvas.j @@ -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; }