diff --git a/src/ImageSharp/Formats/Png/PngMetadata.cs b/src/ImageSharp/Formats/Png/PngMetadata.cs
index 341fc53ed..1e4567548 100644
--- a/src/ImageSharp/Formats/Png/PngMetadata.cs
+++ b/src/ImageSharp/Formats/Png/PngMetadata.cs
@@ -91,34 +91,12 @@ namespace SixLabors.ImageSharp.Formats.Png
public bool HasTransparency { get; set; }
///
- /// Gets or sets the collection of text data stored within the iTXt, tEXt, and zTXt chunks.
+ /// Gets or sets the collection of text data stored within the iTXt, tEXt, and zTXt chunks.
/// Used for conveying textual information associated with the image.
///
public IList TextData { get; set; } = new List();
- ///
- /// Gets the list of png text properties for storing meta information about this image.
- ///
- public IList PngTextProperties { get; } = new List();
-
///
public IDeepCloneable DeepClone() => new PngMetadata(this);
-
- internal bool TryGetPngTextProperty(string keyword, out PngTextData result)
- {
- for (int i = 0; i < this.TextData.Count; i++)
- {
- if (this.TextData[i].Keyword == keyword)
- {
- result = this.TextData[i];
-
- return true;
- }
- }
-
- result = default;
-
- return false;
- }
}
}