mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-09 19:27:39 +02:00
removing test code
This commit is contained in:
@@ -1820,16 +1820,6 @@ class inode(objects.StructType):
|
||||
"""Returns True if the sticky bit is set"""
|
||||
return (self.i_mode & stat.S_ISVTX) != 0
|
||||
|
||||
@property
|
||||
def is_whiteout(self) -> bool:
|
||||
"""Returns True if the inode is a whiteout"""
|
||||
return (self.i_mode & 0o140000) == 0o140000
|
||||
|
||||
@property
|
||||
def is_overlay(self) -> bool:
|
||||
"""Returns True if the inode is an overlay"""
|
||||
return (self.i_mode & 0o40000) == 0o40000
|
||||
|
||||
def get_inode_type(self) -> Union[str, None]:
|
||||
"""Returns inode type name
|
||||
|
||||
|
||||
Reference in New Issue
Block a user