[lldbsuite] Remove the DumpFormatter
authorJonas Devlieghere <jonas@devlieghere.com>
Tue, 29 Oct 2019 23:30:37 +0000 (16:30 -0700)
committerJonas Devlieghere <jonas@devlieghere.com>
Tue, 29 Oct 2019 23:56:59 +0000 (16:56 -0700)
This formatter is never used or referenced.

lldb/packages/Python/lldbsuite/test_event/formatter/dump_formatter.py [deleted file]

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 (file)
index 2a0cda1..0000000
+++ /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")