Remove ObjectsTree class since it's obsolete

This commit is contained in:
Inusual
2020-02-24 21:18:37 -04:00
committed by Eliot Jones
parent 4ffc1620a1
commit ec67ef76cd

View File

@@ -1,24 +0,0 @@
namespace UglyToad.PdfPig.Writer.Merging
{
using Content;
using CrossReference;
using Tokens;
// I don't see the purpose of this class, @Elliot maybe you can explain to me the purpose
internal class ObjectsTree
{
public TrailerDictionary TrailerDictionary { get; }
public ObjectToken TrailerObject { get; }
public Catalog Catalog { get; }
public ObjectsTree(TrailerDictionary trailerDictionary, ObjectToken trailerObject,
Catalog catalog)
{
TrailerDictionary = trailerDictionary;
TrailerObject = trailerObject;
Catalog = catalog;
}
}
}