Skip to content

Commit 99a999a

Browse files
authored
[#5772] fix: missing param <T> (#5776)
### What changes were proposed in this pull request? Missing param `<T>` is added to the `output` method of `Command.java`. ### Why are the changes needed? Fix: #5772 ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? To verify, please run the following command: ``` ./gradlew clean build -x test ``` After running this command, the warning `no @param for <T>` will no longer appear.
1 parent e65eb07 commit 99a999a

File tree

1 file changed

+1
-0
lines changed
  • clients/cli/src/main/java/org/apache/gravitino/cli/commands

1 file changed

+1
-0
lines changed

clients/cli/src/main/java/org/apache/gravitino/cli/commands/Command.java

+1
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ protected <T extends GravitinoClientBase> Builder<T> constructClient(Builder<T>
151151
* Outputs the entity to the console.
152152
*
153153
* @param entity The entity to output.
154+
* @param <T> The type of entity.
154155
*/
155156
protected <T> void output(T entity) {
156157
if (outputFormat == null) {

0 commit comments

Comments
 (0)