From 891b720013f06f092f6be82adad95e5551c696b6 Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Mon, 9 Mar 2015 13:09:46 +0000 Subject: Do not use parentheses for method calls with no arguments. This is neater. Flagged by rubocop --- lib/custodian/parser.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/custodian/parser.rb') diff --git a/lib/custodian/parser.rb b/lib/custodian/parser.rb index 0bafd47..bce507b 100644 --- a/lib/custodian/parser.rb +++ b/lib/custodian/parser.rb @@ -139,7 +139,7 @@ module Custodian text = getURL(uri) text.split( /[\r\n]/ ).each do |line| - val.push( line ) if ( line.length() > 0) + val.push( line ) if ( line.length > 0) end elsif ( line =~ /\s(is|are)\s+(.*)\.+$/ ) -- cgit v1.2.1