From 7c7a5de9888df9fc827087577f954d84449e5231 Mon Sep 17 00:00:00 2001 From: Lisa Nguyen Date: Mon, 15 Jun 2015 10:34:59 -0700 Subject: [PATCH] perf: remove CCIPerfEvent class Remove the CCIPerfEvent class since it's no longer used in WA. Signed-off-by: Lisa Nguyen --- wlauto/instrumentation/perf/__init__.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/wlauto/instrumentation/perf/__init__.py b/wlauto/instrumentation/perf/__init__.py index 2eaebdc7..166f8d7d 100644 --- a/wlauto/instrumentation/perf/__init__.py +++ b/wlauto/instrumentation/perf/__init__.py @@ -167,13 +167,3 @@ class PerfInstrument(Instrument): self._get_device_outfile(label)) return command - -class CCIPerfEvent(object): - - def __init__(self, name, config): - self.name = name - self.config = config - - def __str__(self): - return 'CCI/config={config},name={name}/'.format(**self.__dict__) -