Skip to content

Commit

Permalink
removed unneccessary instance variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Goltergaul committed Dec 11, 2017
1 parent ae1b0ad commit 22c622d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/approvals/verifiers/json_verifier.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ def verify
attr_accessor :approved_path, :received_path

def approved
@approved = JSON.parse(File.read(approved_path))
JSON.parse(File.read(approved_path))
end

def received
@receiver = JSON.parse(File.read(received_path))
JSON.parse(File.read(received_path))
end
end
end
Expand Down

0 comments on commit 22c622d

Please sign in to comment.