don't populate the initial labels list from the existing issue

This commit is contained in:
Brendan Forster
2015-02-24 12:40:53 +09:30
parent bf4985b27c
commit 6c7f0bd56c
-5
View File
@@ -127,11 +127,6 @@ namespace Octokit
Title = Title
};
foreach (var label in Labels.Select(l => l.Name))
{
issueUpdate.Labels.Add(label);
}
return issueUpdate;
}
}