From 5e918b042ba256c491370d81b19cd9857b0c1340 Mon Sep 17 00:00:00 2001 From: Joachim Metz Date: Sun, 22 Jan 2017 19:32:35 +0100 Subject: [PATCH] Removed event UUID #771 --- plaso/containers/events.py | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/plaso/containers/events.py b/plaso/containers/events.py index 2d9d3ae09b..19d3c29d84 100644 --- a/plaso/containers/events.py +++ b/plaso/containers/events.py @@ -75,23 +75,6 @@ def __init__(self): self.tag = None self.timestamp = None - def GetAttributeNames(self): - """Retrieves the attribute names from the event object. - - Attributes that are set to None are ignored. - - Returns: - list[str]: attribute names. - """ - attribute_names = [] - for attribute_name, attribute_value in self.GetAttributes(): - if attribute_value is None: - continue - - attribute_names.append(attribute_name) - - return attribute_names - class EventTag(interface.AttributeContainer): """Class to represent an event tag attribute container.