Skip to content

Commit

Permalink
Remove debug hint
Browse files Browse the repository at this point in the history
  • Loading branch information
koho committed Dec 15, 2020
1 parent 3cba70b commit 5553e94
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions installer/actions/actions/CustomAction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ public static bool CompareFile(BY_HANDLE_FILE_INFORMATION f1, BY_HANDLE_FILE_INF
[CustomAction]
public static ActionResult KillProcesses(Session session)
{
MessageBox(FindWindow(null, "FRP").ToInt32(), "KillProcesses", "提示", MB_OK);
session.Log("Killing FRP processes");
string binPath = session["CustomActionData"];
if (string.IsNullOrEmpty(binPath))
Expand Down Expand Up @@ -112,7 +111,6 @@ public static ActionResult KillProcesses(Session session)
[CustomAction]
public static ActionResult RemoveFrpFiles(Session session)
{
MessageBox(FindWindow(null, "FRP").ToInt32(), "RemoveFrpFiles", "提示", MB_OK);
session.Log("Removing files");
string installPath = session["CustomActionData"];
if (string.IsNullOrEmpty(installPath))
Expand Down Expand Up @@ -155,7 +153,6 @@ public static ActionResult RemoveFrpFiles(Session session)
[CustomAction]
public static ActionResult EvaluateFrpServices(Session session)
{
MessageBox(FindWindow(null, "FRP").ToInt32(), "EvaluateFrpServices", "提示", MB_OK);
session.Log("Evaluate FRP Services");
string binPath = session["CustomActionData"];
if (string.IsNullOrEmpty(binPath))
Expand Down

0 comments on commit 5553e94

Please sign in to comment.