mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-24 13:01:00 +00:00
Removed unused FieldInfo[] array.
This commit is contained in:
parent
731034414c
commit
499b9e0a12
|
@ -353,4 +353,11 @@ namespace OpenTK
|
|||
|
||||
#endregion
|
||||
}
|
||||
|
||||
/// <summary>Represents errors related to Graphics operations.</summary>
|
||||
public class GraphicsException : Exception
|
||||
{
|
||||
public GraphicsException() : base() { }
|
||||
public GraphicsException(string message) : base(message) { }
|
||||
}
|
||||
}
|
|
@ -72,7 +72,6 @@ namespace OpenTK.OpenGL
|
|||
private static Type glClass;
|
||||
private static Type delegatesClass;
|
||||
private static Type importsClass;
|
||||
private static FieldInfo[] delegates;
|
||||
|
||||
#endregion
|
||||
|
||||
|
|
Loading…
Reference in a new issue