From d44dc83308189698ff647041baabe072f66fbd47 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Mon, 13 Dec 2021 14:46:57 -0500 Subject: [PATCH] Fix import for `JavaUtils` **Cherry-pick to `5.3.x`** --- .../integration/ws/dsl/MarshallingWsOutboundGatewaySpec.java | 2 +- .../integration/ws/dsl/SimpleWsOutboundGatewaySpec.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-integration-ws/src/main/java/org/springframework/integration/ws/dsl/MarshallingWsOutboundGatewaySpec.java b/spring-integration-ws/src/main/java/org/springframework/integration/ws/dsl/MarshallingWsOutboundGatewaySpec.java index c78920ccd7..cec1f53f02 100644 --- a/spring-integration-ws/src/main/java/org/springframework/integration/ws/dsl/MarshallingWsOutboundGatewaySpec.java +++ b/spring-integration-ws/src/main/java/org/springframework/integration/ws/dsl/MarshallingWsOutboundGatewaySpec.java @@ -18,7 +18,7 @@ package org.springframework.integration.ws.dsl; import java.util.Arrays; -import org.springframework.integration.JavaUtils; +import org.springframework.integration.util.JavaUtils; import org.springframework.integration.ws.MarshallingWebServiceOutboundGateway; import org.springframework.oxm.Marshaller; import org.springframework.oxm.Unmarshaller; diff --git a/spring-integration-ws/src/main/java/org/springframework/integration/ws/dsl/SimpleWsOutboundGatewaySpec.java b/spring-integration-ws/src/main/java/org/springframework/integration/ws/dsl/SimpleWsOutboundGatewaySpec.java index 92ce200669..48fed5a3f7 100644 --- a/spring-integration-ws/src/main/java/org/springframework/integration/ws/dsl/SimpleWsOutboundGatewaySpec.java +++ b/spring-integration-ws/src/main/java/org/springframework/integration/ws/dsl/SimpleWsOutboundGatewaySpec.java @@ -18,7 +18,7 @@ package org.springframework.integration.ws.dsl; import java.util.Arrays; -import org.springframework.integration.JavaUtils; +import org.springframework.integration.util.JavaUtils; import org.springframework.integration.ws.SimpleWebServiceOutboundGateway; import org.springframework.ws.WebServiceMessageFactory; import org.springframework.ws.client.core.FaultMessageResolver;