We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fccd107 commit 4a19190Copy full SHA for 4a19190
1 file changed
lib/jruby_art/java_opts.rb
@@ -8,9 +8,8 @@ def initialize
8
puts arg_file
9
@opts = []
10
@opts += File.read(arg_file).split(/\s+/) if FileTest.exist?(arg_file)
11
- if opts.empty? && Processing::RP_CONFIG.fetch('java_args', false)
12
- @opts += Processing::RP_CONFIG['java_args'].split(/\s+/)
13
- end
+ return unless opts.empty? && Processing::RP_CONFIG.fetch('java_args', false)
+ @opts += Processing::RP_CONFIG['java_args'].split(/\s+/)
14
end
15
16
0 commit comments