We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4393635 commit ee4bb9aCopy full SHA for ee4bb9a
integration-test/src/test/java/org/cloudfoundry/IntegrationTestConfiguration.java
@@ -30,6 +30,7 @@
30
import java.net.URISyntaxException;
31
import java.net.URL;
32
import java.nio.file.Path;
33
+import java.nio.file.Paths;
34
import java.security.SecureRandom;
35
import java.time.Duration;
36
import java.util.Arrays;
@@ -269,7 +270,7 @@ Boolean configureVersionMismatchhandling(
269
270
if (fileName != null) {
271
URL url = getClass().getResource("/" + fileName);
272
if (url != null) {
- Path path = Path.of(url.toURI());
273
+ Path path = Paths.get(url.toURI());
274
ObjectMapper mapper = new ObjectMapper();
275
logger.info(
276
"reading configuration for handling unknown properties from server from"
0 commit comments