Browse Source

Fixed meaningless inline type parameter to not be stupid

pull/44/head
Anairkoen Schno 4 years ago
parent
commit
4c622b653b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      IPA.Loader/Config/Stores/GeneratedStoreImpl.cs

+ 1
- 1
IPA.Loader/Config/Stores/GeneratedStoreImpl.cs View File

@ -1604,7 +1604,7 @@ namespace IPA.Config.Stores
// for now, we assume that its a generated type implementing IGeneratedStore
var IGeneratedStore_Serialize = typeof(IGeneratedStore).GetMethod(nameof(IGeneratedStore.Serialize));
var IGeneratedStoreT_CopyFrom = typeof(IGeneratedStore<>).GetMethod(nameof(IGeneratedStore<int>.CopyFrom));
var IGeneratedStoreT_CopyFrom = typeof(IGeneratedStore<>).GetMethod(nameof(IGeneratedStore<object>.CopyFrom));
if (member.IsField)
{


Loading…
Cancel
Save