From 3d4704932e4dfa49b75ae40261499652d87c05f8 Mon Sep 17 00:00:00 2001 From: Marc Siegel Date: Mon, 16 Jun 2014 08:01:41 -0400 Subject: [PATCH] (cosmetic: remove unnecessary parentheses) --- on_what.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/on_what.rb b/on_what.rb index b1ffa28..8d672d4 100644 --- a/on_what.rb +++ b/on_what.rb @@ -6,9 +6,9 @@ def on_travis? end def on_jruby? - (defined?(RUBY_ENGINE) && 'jruby' == RUBY_ENGINE) + defined?(RUBY_ENGINE) && 'jruby' == RUBY_ENGINE end def on_1_8? RUBY_VERSION.start_with? '1.8' -end \ No newline at end of file +end