Skip to content

Commit

Permalink
Removed unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
davidebbo committed Aug 4, 2011
1 parent f93e294 commit 3df94b0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Kudu.Core/SourceControl/Hg/HgServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
namespace Kudu.Core.SourceControl.Hg {
public class HgServer : IHgServer {
private readonly Lazy<Server> _server;
private readonly IEnvironment _environment;

private const string HgConfigurationFile = "hgweb.config";
private const string HgConfiguration = @"[web]
Expand All @@ -19,7 +18,6 @@ public class HgServer : IHgServer {
{0} = {1}
";
public HgServer(IEnvironment environment) {
_environment = environment;
_server = new Lazy<Server>(() => GetServer(environment));
}

Expand Down

0 comments on commit 3df94b0

Please sign in to comment.