Replaces types with built-in types.

This commit is contained in:
Kamron Batman 2018-09-14 13:22:16 -07:00
parent fee83ce560
commit 22ab83ea9e
98 changed files with 248 additions and 248 deletions

View file

@ -41,7 +41,7 @@ namespace Server
public static void Error( int eventID, string format, params object[] args )
{
Error( eventID, String.Format( format, args ) );
Error( eventID, string.Format( format, args ) );
}
public static void Warning( int eventID, string text )
@ -51,7 +51,7 @@ namespace Server
public static void Warning( int eventID, string format, params object[] args )
{
Warning( eventID, String.Format( format, args ) );
Warning( eventID, string.Format( format, args ) );
}
public static void Inform( int eventID, string text )
@ -61,7 +61,7 @@ namespace Server
public static void Inform( int eventID, string format, params object[] args )
{
Inform( eventID, String.Format( format, args ) );
Inform( eventID, string.Format( format, args ) );
}
}
}