Skip to content

Commit

Permalink
Merge pull request #3097 from agentgt/multimap_nonnull
Browse files Browse the repository at this point in the history
Value.toMultimap should be NonNull
  • Loading branch information
jknack authored Aug 26, 2023
2 parents d5b1a5f + 16a500b commit 9706680
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jooby/src/main/java/io/jooby/Value.java
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ default boolean isObject() {
*
* @return Value as multi-value map.
*/
@Nullable Map<String, List<String>> toMultimap();
@NonNull Map<String, List<String>> toMultimap();

/**
* Value as single-value map.
Expand Down

0 comments on commit 9706680

Please sign in to comment.