@@ -951,8 +951,8 @@ public AbstractBooleanAssert<?> extractingJsonPathBooleanValue(
951951 * @throws AssertionError if the path is not valid or does not result in an array
952952 */
953953 @ SuppressWarnings ("unchecked" )
954- public <E > ListAssert <E > extractingJsonPathArrayValue (
955- CharSequence expression , Object ... args ) {
954+ public <E > ListAssert <E > extractingJsonPathArrayValue (CharSequence expression ,
955+ Object ... args ) {
956956 return Assertions .assertThat (
957957 extractingJsonPathValue (expression , args , List .class , "an array" ));
958958 }
@@ -962,14 +962,14 @@ public <E> ListAssert<E> extractingJsonPathArrayValue(
962962 * @param expression the {@link JsonPath} expression
963963 * @param args arguments to parameterize the {@code JsonPath} expression with, using
964964 * @param <K> key type
965- * @param <V> value type
966- * formatting specifiers defined in {@link String#format(String, Object...)}
965+ * @param <V> value type formatting specifiers defined in
966+ * {@link String#format(String, Object...)}
967967 * @return a new assertion object whose object under test is the extracted item
968968 * @throws AssertionError if the path is not valid or does not result in a map
969969 */
970970 @ SuppressWarnings ("unchecked" )
971- public <K , V > MapAssert <K , V > extractingJsonPathMapValue (
972- CharSequence expression , Object ... args ) {
971+ public <K , V > MapAssert <K , V > extractingJsonPathMapValue (CharSequence expression ,
972+ Object ... args ) {
973973 return Assertions .assertThat (
974974 extractingJsonPathValue (expression , args , Map .class , "a map" ));
975975 }
0 commit comments