Skip to content

Commit

Permalink
Fix method reference in CollectionUtils javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
kirmerzlikin authored and sormuras committed Aug 24, 2022
1 parent 61edb29 commit e9dff5b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public static boolean isConvertibleToStream(Class<?> type) {
* @return the resulting stream
* @throws PreconditionViolationException if the supplied object is {@code null}
* or not one of the supported types
* @see #isConvertibleToStream(Object)
* @see #isConvertibleToStream(Class)
*/
public static Stream<?> toStream(Object object) {
Preconditions.notNull(object, "Object must not be null");
Expand Down

0 comments on commit e9dff5b

Please sign in to comment.