Skip to content

Commit

Permalink
fix CA2200
Browse files Browse the repository at this point in the history
  • Loading branch information
frg2089 authored and Rans4ckeR committed Jun 22, 2022
1 parent 5856166 commit 3a2dac0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DXMainClient/DXGUI/GameClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ protected override void Initialize()
Logger.Log("No LauncherExe= specified in ClientDefinitions.ini! " +
"Forwarding exception to regular exception handler.");

throw ex;
throw;
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion DXMainClient/Domain/Multiplayer/CnCNet/CnCNetTunnel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public static CnCNetTunnel Parse(string str)
return null;
}

throw ex;
throw;
}
}

Expand Down

0 comments on commit 3a2dac0

Please sign in to comment.