Skip to content

Commit

Permalink
Remove unused methods in MessageQueueExtensions
Browse files Browse the repository at this point in the history
  • Loading branch information
odinserj committed Aug 4, 2016
1 parent 0e43878 commit f4ce614
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/Hangfire.SqlServer.Msmq/MessageQueueExtensions.cs
Original file line number Diff line number Diff line change
@@ -111,16 +111,6 @@ internal static Match GetQueuePathMatch(string queuePath)
return matches[0];
}

private static long GetPrivateQueueCount(string queue)
{
return GetQueueCount(null, "private$", queue);
}

private static long GetPrivateQueueCount(string computerName, string queue)
{
return GetQueueCount(computerName, "private$", queue);
}

private static long GetQueueCount(string computerName, string queueType, string queue)
{
if (string.IsNullOrEmpty(computerName)) computerName = null;

0 comments on commit f4ce614

Please sign in to comment.