fix: Add no-arg overload for getUserInput() in RequestContext to avoid#673
fix: Add no-arg overload for getUserInput() in RequestContext to avoid#673ehsavoie wants to merge 1 commit intoa2aproject:mainfrom
Conversation
Summary of ChangesHello @ehsavoie, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request enhances the Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request introduces a convenient no-argument overload for getUserInput() to default to a newline delimiter. The changes are good, but I've found a critical bug where a NullPointerException can occur, and a minor issue in the Javadoc for the new method. Please see my comments for details.
server-common/src/main/java/io/a2a/server/agentexecution/RequestContext.java
Outdated
Show resolved
Hide resolved
server-common/src/main/java/io/a2a/server/agentexecution/RequestContext.java
Outdated
Show resolved
Hide resolved
server-common/src/main/java/io/a2a/server/agentexecution/RequestContext.java
Outdated
Show resolved
Hide resolved
passing null for default delimiter. Fixes issue a2aproject#668 Signed-off-by: Emmanuel Hugonnet <ehugonne@redhat.com>
|
/gemini review |
There was a problem hiding this comment.
Code Review
The pull request introduces a no-argument getUserInput() method to RequestContext, which defaults to using a newline delimiter. This change improves usability by providing a convenient overload and clarifies the handling of null delimiters in the parameterized getUserInput() method. The changes are well-documented and align with the stated objective of fixing issue #668. A minor suggestion was made to improve conciseness in the getUserInput method by using Objects.requireNonNullElse.
| public String getUserInput(@Nullable String delimiter) { | ||
| if (params == null) { | ||
| return ""; | ||
| } | ||
| if (delimiter == null) { | ||
| delimiter = "\n"; | ||
| } | ||
| return getMessageText(params.message(), delimiter); | ||
| return getMessageText(params.message(), delimiter == null ? "\n" : delimiter); |
There was a problem hiding this comment.
The change from String delimiter to @Nullable String delimiter is good for clarity, but the null check and assignment can be made more concise using Objects.requireNonNullElse or a direct ternary operator in the getMessageText call. The current implementation is fine, but this is a minor improvement opportunity for conciseness.
| public String getUserInput(@Nullable String delimiter) { | |
| if (params == null) { | |
| return ""; | |
| } | |
| if (delimiter == null) { | |
| delimiter = "\n"; | |
| } | |
| return getMessageText(params.message(), delimiter); | |
| return getMessageText(params.message(), delimiter == null ? "\n" : delimiter); | |
| public String getUserInput(@Nullable String delimiter) { | |
| if (params == null) { | |
| return ""; | |
| } | |
| return getMessageText(params.message(), Objects.requireNonNullElse(delimiter, "\n")); | |
| } |
passing null for default delimiter.
Fixes issue #668
Fixes #668 🦕