(cosmetic: remove unnecessary parentheses)

This commit is contained in:
Marc Siegel 2014-06-16 08:01:41 -04:00
parent 749da1d5ec
commit 3d4704932e
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ def on_travis?
end
def on_jruby?
(defined?(RUBY_ENGINE) && 'jruby' == RUBY_ENGINE)
defined?(RUBY_ENGINE) && 'jruby' == RUBY_ENGINE
end
def on_1_8?