Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JsonElement is very impractical at this point #51

Open
KevinKrueger opened this issue Feb 25, 2024 · 0 comments
Open

JsonElement is very impractical at this point #51

KevinKrueger opened this issue Feb 25, 2024 · 0 comments

Comments

@KevinKrueger
Copy link
Collaborator

Change this:

private static TUISchedule CombineTuiSchedule(TUISchedule schedule,  JsonElement changes)
{
    var c = JsonSerializer.Deserialize<TUISchedule>(changes.ToString());
    CopyValues(schedule, c);
    return schedule;
}

to this:

private static TUISchedule CombineTuiSchedule(TUISchedule schedule, TUISchedule changes)
{
    CopyValues(schedule, changes);
    return schedule;
} 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Idea
Development

No branches or pull requests

1 participant