Skip to content

Commit

Permalink
Remove extraneous exception variable (#649)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjmholt authored and TylerLeonhardt committed Apr 7, 2018
1 parent 9d5a2da commit a0761cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PowerShellEditorServices/Workspace/ScriptRegion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public static ScriptRegion Create(IScriptExtent scriptExtent)
{
scriptExtentText = scriptExtent.Text;
}
catch (ArgumentOutOfRangeException e)
catch (ArgumentOutOfRangeException)
{
scriptExtentText = string.Empty;
}
Expand Down

0 comments on commit a0761cf

Please sign in to comment.