Remove unused config methods not used in 'Globals'

This commit is contained in:
Philippe Miossec
2013-01-10 19:11:56 +01:00
parent 4c2ab71e75
commit 331ce9d497
-16
View File
@@ -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"); }