summaryrefslogtreecommitdiff
path: root/lib/custodian/parser.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2015-03-09 13:04:45 +0000
committerSteve Kemp <steve@steve.org.uk>2015-03-09 13:04:45 +0000
commit7bde57ae8fce8ce55a44cc31727bfc08f2369fe9 (patch)
tree8301bdccddd2af69b9ce7c633cefa3c6d00424fb /lib/custodian/parser.rb
parent35c41ad2b34de38a4cfac11911bf6de09f60e419 (diff)
Omit the parentheses in defs when the method doesn't accept any arguments.
This is neater.
Diffstat (limited to 'lib/custodian/parser.rb')
-rw-r--r--lib/custodian/parser.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/parser.rb b/lib/custodian/parser.rb
index 3379c5a..e73001f 100644
--- a/lib/custodian/parser.rb
+++ b/lib/custodian/parser.rb
@@ -52,7 +52,7 @@ module Custodian
#
# Constructor
#
- def initialize( )
+ def initialize
@MACROS = Hash.new()
@jobs = Array.new()
end