removed UGuid leftovers.

This commit is contained in:
kay.one 2013-05-22 22:32:54 -07:00
parent 4da6654440
commit c357d062d3
3 changed files with 5 additions and 14 deletions

View file

@ -53,9 +53,9 @@ namespace NzbDrone.Update
private int ParseProcessId(string[] args)
{
int id;
if (args ==null || !Int32.TryParse(args[0], out id) || id <= 0)
if (args == null || !Int32.TryParse(args[0], out id) || id <= 0)
{
throw new ArgumentOutOfRangeException("Invalid process id: " + args[0]);
throw new ArgumentOutOfRangeException("args", "Invalid process ID");
}
logger.Debug("NzbDrone processId:{0}", id);