File tree 1 file changed +11
-8
lines changed
1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -24,21 +24,24 @@ module Jre
24
24
25
25
# Encapsulates the detect, compile, and release functionality for selecting an Azul Platform Prime JRE.
26
26
class ZingJRE < OpenJDKLike
27
+ # (see JavaBuildpack::Component::ModularComponent#command)
27
28
def command
28
- ""
29
+ ''
29
30
end
30
31
32
+ # (see JavaBuildpack::Component::ModularComponent#sub_components)
31
33
def sub_components ( context )
32
- [
33
- OpenJDKLikeJre . new ( sub_configuration_context ( context , 'jre' )
34
- . merge ( component_name : self . class . to_s . space_case ) ) ,
35
- OpenJDKLikeSecurityProviders . new ( context )
36
- ]
34
+ [
35
+ OpenJDKLikeJre . new ( sub_configuration_context ( context , 'jre' )
36
+ . merge ( component_name : self . class . to_s . space_case ) ) ,
37
+ OpenJDKLikeSecurityProviders . new ( context )
38
+ ]
37
39
end
38
-
40
+
41
+ # (see JavaBuildpack::Component::BaseComponent#release)
39
42
def release
40
43
super
41
- @droplet . add_preformatted_options " -XX:+ExitOnOutOfMemoryError"
44
+ @droplet . add_preformatted_options ' -XX:+ExitOnOutOfMemoryError'
42
45
end
43
46
end
44
47
end
You can’t perform that action at this time.
0 commit comments