We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b6f3b2 commit d955781Copy full SHA for d955781
integration-tests/src/test/java/oracle/kubernetes/operator/ITSitConfig.java
@@ -12,7 +12,6 @@
12
import java.nio.file.Files;
13
import java.nio.file.Path;
14
import java.nio.file.Paths;
15
-import java.nio.file.StandardOpenOption;
16
import java.util.*;
17
import java.util.logging.Level;
18
import oracle.kubernetes.operator.utils.Domain;
@@ -276,7 +275,7 @@ private static void copySitConfigFiles() throws IOException {
276
275
"jms-ClusterJmsSystemResource.xml",
277
"version.txt"
278
};
279
- for (String file : files) {
+ for (String file : files) {
280
Path path = Paths.get(src_dir, file);
281
logger.log(Level.INFO, "Copying {0}", path.toString());
282
Charset charset = StandardCharsets.UTF_8;
0 commit comments