Fix Inspect definition in reader following merge

This commit is contained in:
Gunnsteinn Hall 2016-12-02 16:14:00 +00:00
parent 1564f8ab06
commit eb1edeb73e

View File

@ -695,6 +695,7 @@ func (this *PdfReader) GetPageAsPdfPage(pageNumber int) (*PdfPage, error) {
return page, nil
}
func (this *PdfReader) Inspect() {
this.parser.Inspect()
// Inspect the object types, subtypes and content in the PDF file.
func (this *PdfReader) Inspect() (map[string]int, error) {
return this.parser.Inspect()
}