Removed unused FieldInfo[] array.
This commit is contained in:
parent
c7837ac381
commit
b6d69104b4
2 changed files with 7 additions and 1 deletions
|
@ -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