Removed unused FieldInfo[] array.

This commit is contained in:
the_fiddler 2008-01-23 00:20:02 +00:00
parent c7837ac381
commit b6d69104b4
2 changed files with 7 additions and 1 deletions

View file

@ -353,4 +353,11 @@ namespace OpenTK
#endregion #endregion
} }
/// <summary>Represents errors related to Graphics operations.</summary>
public class GraphicsException : Exception
{
public GraphicsException() : base() { }
public GraphicsException(string message) : base(message) { }
}
} }

View file

@ -72,7 +72,6 @@ namespace OpenTK.OpenGL
private static Type glClass; private static Type glClass;
private static Type delegatesClass; private static Type delegatesClass;
private static Type importsClass; private static Type importsClass;
private static FieldInfo[] delegates;
#endregion #endregion