From 331ce9d497cd761ac9b73a6433505ac31bdf17ce Mon Sep 17 00:00:00 2001 From: Philippe Miossec Date: Thu, 10 Jan 2013 19:11:56 +0100 Subject: [PATCH] Remove unused config methods not used in 'Globals' --- GitTfs/Globals.cs | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/GitTfs/Globals.cs b/GitTfs/Globals.cs index ce6d5d13..ccd8276b 100644 --- a/GitTfs/Globals.cs +++ b/GitTfs/Globals.cs @@ -63,22 +63,6 @@ namespace Sep.Git.Tfs public string RemoteId { get; set; } - private string GetRemoteConfigPrefix() - { - if (RemoteId == null) return null; - return GetRemoteConfigPrefix(RemoteId); - } - - private string GetRemoteConfigPrefix(string remoteId) - { - return "tfs-remote." + remoteId; - } - - public string RemoteConfigKey(string remoteId, string parameter) - { - return GetRemoteConfigPrefix(remoteId) + "." + parameter; - } - public string GitDir { get { return Environment.GetEnvironmentVariable("GIT_DIR"); }