Skip to content
Snippets Groups Projects
Commit 4e927d9c authored by Tim D. Smith's avatar Tim D. Smith
Browse files

Remove unused variable Step#@time

Shadowed by Step#time method.
parent 452fbda9
No related branches found
No related tags found
No related merge requests found
......@@ -96,7 +96,7 @@ module Homebrew
# Wraps command invocations. Instantiated by Test#test.
# Handles logging and pretty-printing.
class Step
attr_reader :command, :name, :status, :output, :time
attr_reader :command, :name, :status, :output
# Instantiates a Step object.
# @param test [Test] The parent Test object
......@@ -112,7 +112,6 @@ module Homebrew
@name = command[1].delete("-")
@status = :running
@repository = options[:repository] || HOMEBREW_REPOSITORY
@time = 0
end
def log_file_path
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment