Chop out some unused code.

This commit is contained in:
Lucas Nicodemus 2017-12-23 09:36:18 -07:00
parent fe62b14a13
commit 12b83f6f85

View file

@ -448,19 +448,4 @@ namespace TShockAPI
File.WriteAllText("PermissionsDescriptions.txt", sb.ToString());
}
}
[AttributeUsage(AttributeTargets.Field, Inherited = false, AllowMultiple = false)]
public sealed class TodoAttribute : Attribute
{
public string Info { get; private set; }
public TodoAttribute(string info)
{
Info = info;
}
public TodoAttribute()
{
}
}
}