Removed unused and obsolete fields.

This commit is contained in:
Jarl Gullberg 2017-06-20 15:08:34 +02:00
parent 74e22142cb
commit bac01afe00
No known key found for this signature in database
GPG key ID: 750FF6F6BDA72D23

View file

@ -41,24 +41,6 @@ namespace OpenTK
{
#region Fields
/// <summary>
/// A reflection handle to the nested type that contains the function delegates.
/// </summary>
[Obsolete("Not used")]
readonly protected Type DelegatesClass;
/// <summary>
/// A refection handle to the nested type that contains core functions (i.e. not extensions).
/// </summary>
[Obsolete("Not used")]
readonly protected Type CoreClass;
/// <summary>
/// A mapping of core function names to MethodInfo handles.
/// </summary>
[Obsolete("Not used")]
readonly protected SortedList<string, MethodInfo> CoreFunctionMap;
bool rebuildExtensionList = true;
#endregion