Merge pull request #131 from Tsunamical/master

Small Code Improvements
This commit is contained in:
Kaphotics 2016-07-08 18:34:14 -07:00 committed by GitHub
commit 6a514df63d
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ public LegalityAnalysis(PKM pk)
{
if (!(pk is PK6))
return;
pk6 = pk as PK6;
pk6 = (PK6) pk;
try
{
updateRelearnLegality();

View File

@ -3,13 +3,13 @@
namespace PKHeX
{
static class Program
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
private static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);