This commit is contained in:
Kirill Osenkov 2021-08-02 18:41:35 -07:00
Родитель 8eeba5f897
Коммит 8720d3f253
2 изменённых файлов: 2 добавлений и 5 удалений

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

@ -2,7 +2,6 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Collections.Generic;
using Microsoft.VisualStudio.Core.Imaging;
using Microsoft.VisualStudio.Imaging;
using Microsoft.VisualStudio.Text.Adornments;
@ -22,8 +21,6 @@ namespace MonoDevelop.Xml.Editor.Completion
public static ImageElement ClosingTag = Element;
static readonly Guid KnownImagesGuid = KnownImageIds.ImageCatalogGuid;
static ImageElement CreateElement (int id) =>
new ImageElement (new ImageId (new Guid (KnownImageIds.ImageCatalogGuidString), id));
static ImageElement CreateElement (int id) => new ImageElement (new ImageId (KnownImagesGuid, id));
}
}

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

@ -12,7 +12,7 @@ using MonoDevelop.Xml.Dom;
namespace MonoDevelop.Xml.Editor.Completion
{
public class XmlSchemaCompletionSource : XmlCompletionSource
class XmlSchemaCompletionSource : XmlCompletionSource
{
protected XmlSchema lastSearchedSchema = null;
protected XmlSchema schema { get; }