Removes redundant delegate type declarations

This commit is contained in:
Kamron Batman 2018-09-14 14:32:04 -07:00
parent 3c9842ee5a
commit c85b0a740c
317 changed files with 898 additions and 903 deletions

View file

@ -12,7 +12,7 @@ namespace Server.Engines.Reports
public class BarGraph : Chart
{
#region Type Identification
public static readonly PersistableType ThisTypeID = new PersistableType( "bg", new ConstructCallback( Construct ) );
public static readonly PersistableType ThisTypeID = new PersistableType( "bg", Construct );
private static PersistableObject Construct()
{

View file

@ -3,7 +3,7 @@ namespace Server.Engines.Reports
public class ChartItem : PersistableObject
{
#region Type Identification
public static readonly PersistableType ThisTypeID = new PersistableType( "ci", new ConstructCallback( Construct ) );
public static readonly PersistableType ThisTypeID = new PersistableType( "ci", Construct );
private static PersistableObject Construct()
{

View file

@ -3,7 +3,7 @@ namespace Server.Engines.Reports
public class PieChart : Chart
{
#region Type Identification
public static readonly PersistableType ThisTypeID = new PersistableType( "pc", new ConstructCallback( Construct ) );
public static readonly PersistableType ThisTypeID = new PersistableType( "pc", Construct );
private static PersistableObject Construct()
{

View file

@ -3,7 +3,7 @@ namespace Server.Engines.Reports
public class ItemValue : PersistableObject
{
#region Type Identification
public static readonly PersistableType ThisTypeID = new PersistableType( "iv", new ConstructCallback( Construct ) );
public static readonly PersistableType ThisTypeID = new PersistableType( "iv", Construct );
private static PersistableObject Construct()
{

View file

@ -3,7 +3,7 @@ namespace Server.Engines.Reports
public class Report : PersistableObject
{
#region Type Identification
public static readonly PersistableType ThisTypeID = new PersistableType( "rp", new ConstructCallback( Construct ) );
public static readonly PersistableType ThisTypeID = new PersistableType( "rp", Construct );
private static PersistableObject Construct()
{

View file

@ -3,7 +3,7 @@ namespace Server.Engines.Reports
public class ReportColumn : PersistableObject
{
#region Type Identification
public static readonly PersistableType ThisTypeID = new PersistableType( "rc", new ConstructCallback( Construct ) );
public static readonly PersistableType ThisTypeID = new PersistableType( "rc", Construct );
private static PersistableObject Construct()
{

View file

@ -3,7 +3,7 @@ namespace Server.Engines.Reports
public class ReportItem : PersistableObject
{
#region Type Identification
public static readonly PersistableType ThisTypeID = new PersistableType( "ri", new ConstructCallback( Construct ) );
public static readonly PersistableType ThisTypeID = new PersistableType( "ri", Construct );
private static PersistableObject Construct()
{

View file

@ -5,7 +5,7 @@ namespace Server.Engines.Reports
public class Snapshot : PersistableObject
{
#region Type Identification
public static readonly PersistableType ThisTypeID = new PersistableType( "ss", new ConstructCallback( Construct ) );
public static readonly PersistableType ThisTypeID = new PersistableType( "ss", Construct );
private static PersistableObject Construct()
{

View file

@ -5,7 +5,7 @@ namespace Server.Engines.Reports
public class SnapshotHistory : PersistableObject
{
#region Type Identification
public static readonly PersistableType ThisTypeID = new PersistableType( "sh", new ConstructCallback( Construct ) );
public static readonly PersistableType ThisTypeID = new PersistableType( "sh", Construct );
private static PersistableObject Construct()
{

View file

@ -16,7 +16,7 @@ namespace Server.Engines.Reports
public class PageInfo : PersistableObject
{
#region Type Identification
public static readonly PersistableType ThisTypeID = new PersistableType( "pi", new ConstructCallback( Construct ) );
public static readonly PersistableType ThisTypeID = new PersistableType( "pi", Construct );
private static PersistableObject Construct()
{

View file

@ -5,7 +5,7 @@ namespace Server.Engines.Reports
public class QueueStatus : PersistableObject
{
#region Type Identification
public static readonly PersistableType ThisTypeID = new PersistableType( "qs", new ConstructCallback( Construct ) );
public static readonly PersistableType ThisTypeID = new PersistableType( "qs", Construct );
private static PersistableObject Construct()
{

View file

@ -5,7 +5,7 @@ namespace Server.Engines.Reports
public class ResponseInfo : PersistableObject
{
#region Type Identification
public static readonly PersistableType ThisTypeID = new PersistableType( "rs", new ConstructCallback( Construct ) );
public static readonly PersistableType ThisTypeID = new PersistableType( "rs", Construct );
private static PersistableObject Construct()
{

View file

@ -7,7 +7,7 @@ namespace Server.Engines.Reports
public class StaffHistory : PersistableObject
{
#region Type Identification
public static readonly PersistableType ThisTypeID = new PersistableType( "stfhst", new ConstructCallback( Construct ) );
public static readonly PersistableType ThisTypeID = new PersistableType( "stfhst", Construct );
private static PersistableObject Construct()
{