From 9f989559bad779f21fcb37fb544f9ecb96d6f567 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Tue, 29 Oct 2019 16:30:37 -0700 Subject: [PATCH] [lldbsuite] Remove the DumpFormatter This formatter is never used or referenced. --- .../test_event/formatter/dump_formatter.py | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 lldb/packages/Python/lldbsuite/test_event/formatter/dump_formatter.py diff --git a/lldb/packages/Python/lldbsuite/test_event/formatter/dump_formatter.py b/lldb/packages/Python/lldbsuite/test_event/formatter/dump_formatter.py deleted file mode 100644 index 2a0cda1..0000000 --- a/lldb/packages/Python/lldbsuite/test_event/formatter/dump_formatter.py +++ /dev/null @@ -1,22 +0,0 @@ -""" -Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -See https://llvm.org/LICENSE.txt for license information. -SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -""" - -from __future__ import print_function -from __future__ import absolute_import - -# System modules -import pprint - -# Our modules -from .results_formatter import ResultsFormatter - - -class DumpFormatter(ResultsFormatter): - """Formats events to the file as their raw python dictionary format.""" - - def handle_event(self, test_event): - super(DumpFormatter, self).handle_event(test_event) - self.out_file.write("\n" + pprint.pformat(test_event) + "\n") -- 2.7.4