forked from OSchip/llvm-project
[lit] Remove unused TestingProgressDisplay attr
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 llvm-svn: 283709
This commit is contained in:
parent
b25861c31e
commit
3a0f79fb19
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue