mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-08 22:35:38 +00:00
Fix SA1000 in Platform\iPhoneOS\iPhoneOSGameView.cs
Fixes "The keyword 'typeof' must not be followed by a space."
This commit is contained in:
parent
178508ac0e
commit
d7c44693e7
|
@ -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()
|
||||||
|
|
Loading…
Reference in a new issue