Looks like I need null pokedex support for VeekunImport...

This commit is contained in:
Greg Edwards 2015-02-10 19:43:07 -05:00
parent a7437dd691
commit 81000cd1f5

View File

@ -11,7 +11,6 @@ namespace PkmnFoundations.Pokedex
{
internal PokedexRecordBase(Pokedex pokedex)
{
if (pokedex == null) throw new ArgumentNullException("pokedex");
m_pokedex = pokedex;
m_lazy_pairs = new List<ILazyKeyValuePair<int, object>>();
}