-
Notifications
You must be signed in to change notification settings - Fork 347
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
3049 Use poco based parsers #3073
base: develop-6.0
Are you sure you want to change the base?
Conversation
@@ -0,0 +1,197 @@ | |||
/* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewer: this file was moved - so nothing conceptually new going on here.
buildPocoBuilderSettings(settings)); | ||
|
||
|
||
private static PocoBuilderSettings buildPocoBuilderSettings(ParserSettings ps) => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code moved old BaseParser, which has been deleted. This was the only place it is still used.
public async Tasks.Task<T> ParseAsync<T>(JsonReader reader) where T : Base | ||
=> (T)await ParseAsync(reader, typeof(T)).ConfigureAwait(false); | ||
|
||
/// <inheritdoc cref="ParseAsync(string, Type)" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This stuff has been moved to (legacy) extension methods you have already seen above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed it for snafus, added come helpful comments for reviewer (I hope). No formal PR review.
Description
Describe the changes in this PR.
Related issues
Closes|Fixes|Resolves [issue #].
Testing
Describe how this change was tested.
FirelyTeam Checklist