Fix SA1000 in Platform\iPhoneOS\iPhoneOSGameView.cs

Fixes "The keyword 'typeof' must not be followed by a space."
This commit is contained in:
Fraser Waters 2017-08-07 17:57:40 +01:00
parent 178508ac0e
commit d7c44693e7

View file

@ -257,7 +257,7 @@ namespace OpenTK.Platform.iPhoneOS
[Export ("layerClass")] [Export ("layerClass")]
public static Class GetLayerClass () public static Class GetLayerClass ()
{ {
return new Class (typeof (CAEAGLLayer)); return new Class (typeof(CAEAGLLayer));
} }
private void AssertValid() private void AssertValid()