1
1
/*
2
2
* ===========================================================================
3
- * (c) Copyright IBM Corp. 2019, 2023 All Rights Reserved
3
+ * (c) Copyright IBM Corp. 2019, 2024 All Rights Reserved
4
4
* ===========================================================================
5
- *
5
+ *
6
6
* This code is free software; you can redistribute it and/or modify it
7
7
* under the terms of the GNU General Public License version 2 only, as
8
- * published by the Free Software Foundation.
8
+ * published by the Free Software Foundation.
9
9
*
10
- * IBM designates this particular file as subject to the "Classpath" exception
10
+ * IBM designates this particular file as subject to the "Classpath" exception
11
11
* as provided by IBM in the LICENSE file that accompanied this code.
12
12
*
13
13
* This code is distributed in the hope that it will be useful, but WITHOUT
18
18
*
19
19
* You should have received a copy of the GNU General Public License version
20
20
* 2 along with this work; if not, see <http://www.gnu.org/licenses/>.
21
- *
22
21
* ===========================================================================
23
22
*/
24
-
25
23
package requires ;
26
24
27
25
import java .util .HashMap ;
@@ -33,10 +31,9 @@ public class OpenJ9PropsExt implements Callable<Map<String, String>> {
33
31
34
32
@ Override
35
33
public Map <String , String > call () {
36
-
37
34
Map <String , String > map = new HashMap <>();
38
35
try {
39
- map .put ("docker .support" , "true" );
36
+ map .put ("container .support" , "true" );
40
37
map .put ("vm.bits" , vmBits ());
41
38
map .put ("vm.cds" , "false" );
42
39
map .put ("vm.cds.write.archived.java.heap" , "false" );
@@ -58,11 +55,10 @@ public Map<String, String> call() {
58
55
map .put ("vm.openj9" , "true" );
59
56
map .put ("vm.opt.final.ClassUnloading" , "true" );
60
57
map .put ("vm.opt.final.ZGenerational" , "false" );
61
- }
62
- catch (Exception e ) {
58
+ } catch (Exception e ) {
63
59
e .printStackTrace ();
64
60
System .exit (1 );
65
- }
61
+ }
66
62
return map ;
67
63
}
68
64
0 commit comments