-
Notifications
You must be signed in to change notification settings - Fork 28
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
Reflection free query parameters expansion #991
Conversation
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.
Thanks for taking this on. A few minor comments.
components/abstractions/src/test/java/com/microsoft/kiota/RequestInformationTest.java
Outdated
Show resolved
Hide resolved
components/abstractions/src/main/java/com/microsoft/kiota/RequestInformation.java
Outdated
Show resolved
Hide resolved
…estInformationTest.java Co-authored-by: Vincent Biret <vibiret@microsoft.com>
name = annotationName; | ||
} | ||
} | ||
public void addQueryParameters(@Nullable final QueryParameters parameters) { |
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.
argh, forgot a line here:
if (parameters == null) return;
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.
arg, I missed it too... Please submit a patch (with patch bump for the version) as I just finished releasing it.
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.
noticed, and it's ready 😄
Fix for: microsoft/kiota#3965