Clean unused function

This commit is contained in:
Mykola Grymalyuk
2021-05-21 09:27:26 -06:00
parent 88724c4950
commit ecca9f2c72
2 changed files with 0 additions and 12 deletions

View File

@@ -68,12 +68,6 @@ class OpenCoreLegacyPatcher():
else:
self.constants.recovery_status = False
def hexswap(self, input_hex: str):
hex_pairs = [input_hex[i:i + 2] for i in range(0, len(input_hex), 2)]
hex_rev = hex_pairs[::-1]
hex_str = "".join(["".join(x) for x in hex_rev])
return hex_str.upper()
def build_opencore(self):
Build.BuildOpenCore(self.constants.custom_model or self.current_model, self.constants).build_opencore()