Skip to content

Commit

Permalink
Fixing serializer behavior with multiple collections per object.
Browse files Browse the repository at this point in the history
  • Loading branch information
MainMemory committed Mar 10, 2015
1 parent fcad0c6 commit 25c04ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SA Tools/IniSerializer.cs
Expand Up @@ -425,7 +425,7 @@ private static object DeserializeInternal(string name, Type type, object default
setmethod.Invoke(result, new object[] { propval });
break;
}
ini.Remove(rootObject ? string.Empty : name);
ini.Remove(fullname);
return result;
}

Expand Down

0 comments on commit 25c04ff

Please sign in to comment.