File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
java/operator-compatibility/src/main/java/com/oracle/coherence/k8s/testing Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 1010import java .nio .file .Path ;
1111import java .nio .file .Paths ;
1212import java .nio .file .StandardCopyOption ;
13- import java .nio .file .attribute .PosixFilePermission ;
1413import java .nio .file .attribute .PosixFilePermissions ;
15- import java .util .HashSet ;
16- import java .util .Set ;
1714
1815/**
1916 * Set-up class run by the compatibility image build.
@@ -49,7 +46,8 @@ private static void copy(Path source, Path targetDir) throws Exception {
4946 Path target = targetDir .resolve (source .getFileName ());
5047 Files .copy (source , target , StandardCopyOption .REPLACE_EXISTING );
5148 Files .setPosixFilePermissions (target , PosixFilePermissions .fromString ("rw-r--r--" ));
52- } else {
49+ }
50+ else {
5351 System .out .println ("Nothing to copy, source does not exist: " + source );
5452 }
5553 }
You can’t perform that action at this time.
0 commit comments