diff --git a/lib/outlaw/enforcement.rb b/lib/outlaw/enforcement.rb index 7164b67..72b8708 100644 --- a/lib/outlaw/enforcement.rb +++ b/lib/outlaw/enforcement.rb @@ -11,7 +11,6 @@ def process_directory(path) Dir.foreach(path) do |entry| next if entry == '.' or entry == '..' if File.directory?("#{path}/#{entry}") - # Dir.open(path + entry) process_directory("#{path}/#{entry}") else handle("#{path}/#{entry}")