Skip to content

Commit

Permalink
[lit] Remove unused TestingProgressDisplay attr
Browse files Browse the repository at this point in the history
Summary:
`TestingProgressDisplay` initializes its `current` attribute to `None`, but
never reads or writes the value again. Remove it.

Reviewers: echristo, delcypher, beanz, ddunbar

Subscribers: llvm-commits, mehdi_amini

Differential Revision: https://reviews.llvm.org/D25415

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@283709 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
modocache committed Oct 10, 2016
1 parent cb351a4 commit 996fc5b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion utils/lit/lit/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ class TestingProgressDisplay(object):
def __init__(self, opts, numTests, progressBar=None):
self.opts = opts
self.numTests = numTests
self.current = None
self.progressBar = progressBar
self.completed = 0

Expand Down

0 comments on commit 996fc5b

Please sign in to comment.