summaryrefslogtreecommitdiff
path: root/coverage/report.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/report.py')
-rw-r--r--coverage/report.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/coverage/report.py b/coverage/report.py
index c694d79b..4f81d99c 100644
--- a/coverage/report.py
+++ b/coverage/report.py
@@ -4,7 +4,6 @@
"""Reporter foundation for coverage.py."""
import os
-import warnings
from coverage.files import prep_patterns, FnmatchMatcher
from coverage.misc import CoverageException, NoSource, NotPython, isolate_module
@@ -31,15 +30,6 @@ class Reporter(object):
# way for now.
self._file_reporters = []
- @property
- def file_reporters(self):
- """Keep .file_reporters working for private-grabbing tools."""
- warnings.warn(
- "Report.file_reporters will no longer be available in Coverage.py 4.2",
- DeprecationWarning,
- )
- return self._file_reporters
-
def find_file_reporters(self, morfs):
"""Find the FileReporters we'll report on.