remove page:getPageText debug dump to improve performance on device

And leave it in unireader if we can't find text on page
This commit is contained in:
Dobrica Pavlinusic
2012-04-13 23:54:06 +02:00
parent a65090025c
commit b6d167f8ca
2 changed files with 3 additions and 1 deletions

View File

@@ -41,7 +41,7 @@ function PDFReader:getText(pageno)
return nil
end
local text = page:getPageText()
print(dump(text))
--print("## page:getPageText "..dump(text)) -- performance impact on device
page:close()
return text
end