improve: remove unused method

This commit is contained in:
h z
2025-02-21 09:24:28 +00:00
parent 0b37bae704
commit 64bb72994d

View File

@@ -148,22 +148,4 @@ public class Program
assembly.Write($"{dllPath}.2.dll");
File.Replace($"{dllPath}.2.dll", dllPath, null);
}
private static string GetAppImagePath()
{
try
{
string exePath = "/proc/self/exe";
if (File.Exists(exePath))
{
return Path.GetFullPath(new FileInfo(exePath).FullName);
}
}
catch (Exception ex)
{
return "";
}
return "";
}
}