From d7c44693e7ad2e12295e40ddfd578a1c789a4da3 Mon Sep 17 00:00:00 2001 From: Fraser Waters Date: Mon, 7 Aug 2017 17:57:40 +0100 Subject: [PATCH] Fix SA1000 in Platform\iPhoneOS\iPhoneOSGameView.cs Fixes "The keyword 'typeof' must not be followed by a space." --- src/OpenTK/Platform/iPhoneOS/iPhoneOSGameView.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OpenTK/Platform/iPhoneOS/iPhoneOSGameView.cs b/src/OpenTK/Platform/iPhoneOS/iPhoneOSGameView.cs index 82c531a8..319dbf51 100644 --- a/src/OpenTK/Platform/iPhoneOS/iPhoneOSGameView.cs +++ b/src/OpenTK/Platform/iPhoneOS/iPhoneOSGameView.cs @@ -257,7 +257,7 @@ namespace OpenTK.Platform.iPhoneOS [Export ("layerClass")] public static Class GetLayerClass () { - return new Class (typeof (CAEAGLLayer)); + return new Class (typeof(CAEAGLLayer)); } private void AssertValid()