Update src/UglyToad.PdfPig/Content/Page.cs

Co-Authored-By: Eliot Jones <elioty@hotmail.co.uk>
This commit is contained in:
vadik299
2019-07-23 21:04:28 -04:00
committed by GitHub
parent 6ded47da92
commit f2a64d9362

View File

@@ -45,7 +45,7 @@
/// <summary>
/// The set of <see cref="PdfPath"/>s drawn by the PDF content.
/// </summary>
public List<PdfPath> Paths => Content?.Paths ?? new List<PdfPath>();
public IReadOnlyList<PdfPath> Paths => Content?.Paths ?? new List<PdfPath>();
/// <summary>
/// The full text of all characters on the page in the order they are presented in the PDF content.
@@ -171,4 +171,4 @@
}
}
}
}
}