revert space fix (Avalonia fixed this bug)

This commit is contained in:
Jeffrey Ye 2019-11-26 00:38:53 -08:00
Родитель e4d1bf0346
Коммит cfcb337c1d
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -1123,8 +1123,7 @@ namespace ICSharpCode.ILSpy
async void LoadAssemblies(IEnumerable<string> fileNames, List<LoadedAssembly> loadedAssemblies = null, bool focusNode = true)
{
SharpTreeNode lastNode = null;
foreach (string name in fileNames) {
string file = Uri.UnescapeDataString(name);
foreach (string file in fileNames) {
switch (Path.GetExtension(file)) {
case ".nupkg":
this.handlingNugetPackageSelection = true;