Skip to content

Commit

Permalink
Removed event UUID log2timeline#771
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Apr 3, 2017
1 parent 02a94ad commit 5e918b0
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions plaso/containers/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 5e918b0

Please sign in to comment.