From bb1e41f59be2444a4efeb7f81043f3ed214211fa Mon Sep 17 00:00:00 2001 From: Paul Kermann Date: Mon, 2 May 2022 09:36:50 +0300 Subject: [PATCH] remove at_layer --- volatility3/framework/interfaces/objects.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/volatility3/framework/interfaces/objects.py b/volatility3/framework/interfaces/objects.py index 98ceca3d0..2240c58c9 100644 --- a/volatility3/framework/interfaces/objects.py +++ b/volatility3/framework/interfaces/objects.py @@ -170,11 +170,6 @@ class ObjectInterface(metaclass = abc.ABCMeta): size = object_template.size) return object_template(context = self._context, object_info = object_info) - def at_layer(self, new_layer_name) -> 'ObjectInterface': - """Returns the same object casted at a different layer. - """ - return self._context.object(self.vol.type_name, offset=self.vol.offset, layer_name=new_layer_name) - def has_member(self, member_name: str) -> bool: """Returns whether the object would contain a member called member_name.