From 12263f9e538f318d4920719f130810d60b9897c1 Mon Sep 17 00:00:00 2001 From: Ynse Hoornenborg Date: Tue, 4 Jan 2022 21:33:53 +0100 Subject: [PATCH] Delete XElementEqualityComparer.cs --- .../Profiles/XMP/XElementEqualityComparer.cs | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 src/ImageSharp/Metadata/Profiles/XMP/XElementEqualityComparer.cs 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(); - } -}