Merge pull request #14890 from hmdrzsharifi/BAEL-7076

#BAEL-7076: Update article "Unmarshalling a JSON Array Using camel-jackson"
This commit is contained in:
Liam Williams 2023-10-04 22:10:52 +01:00 committed by GitHub
commit 4efa2ba820
1 changed files with 2 additions and 2 deletions

View File

@ -45,8 +45,8 @@ public class FruitArrayJacksonUnmarshalUnitTest {
return new RouteBuilder() {
@Override
public void configure() throws Exception {
from("direct:jsonInput").unmarshal(new ListJacksonDataFormat(Fruit.class))
.to("mock:marshalledObject");
from("direct:jsonInput").unmarshal(new ListJacksonDataFormat(Fruit.class))
.to("mock:marshalledObject");
}
};
}