diff --git a/src/ImageSharp/Metadata/Profiles/XMP/XElementEqualityComparer.cs b/src/ImageSharp/Metadata/Profiles/XMP/XElementEqualityComparer.cs deleted file mode 100644 index 231b3f5dd1..0000000000 --- a/src/ImageSharp/Metadata/Profiles/XMP/XElementEqualityComparer.cs +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright (c) Six Labors. -// Licensed under the Apache License, Version 2.0. - -using System.Collections.Generic; -using System.Xml.Linq; - -namespace SixLabors.ImageSharp.Metadata.Profiles.Xmp -{ - /// - /// Compare objects for Name and Value equality. - /// - public class XElementEqualityComparer : IEqualityComparer - { - /// - public bool Equals(XElement x, XElement y) => x.Name == y.Name && x.Value == y.Value; - - /// - public int GetHashCode(XElement obj) => obj.GetHashCode(); - } -}