Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
cgardens committed Jun 25, 2022
1 parent 48162ab commit 01e979d
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,8 @@ public static <T> List<T> traverseJsonSchemaWithCollector(final JsonNode jsonSch
* optional, nothing will be collected, otherwise, whatever is returned will be collected and
* returned by the final collection.
* @param <T> - type of objects being collected
* @return - collection of all items that were collected during the traversal. Returns a { @link
* Collection } because there is no order or uniqueness guarantee so neither List nor Set
* make sense.
* @return - collection of all items that were collected during the traversal. Returns values in
* preoorder traversal order.
*/
public static <T> List<T> traverseJsonSchemaWithFilteredCollector(final JsonNode jsonSchema,
final BiFunction<JsonNode, List<FieldNameOrList>, Optional<T>> mapper) {
Expand Down

0 comments on commit 01e979d

Please sign in to comment.