Extract table page wise example code correction

Hi Team,

I am referring to all table extraction example mentioned on extraction example
When trying to execute this example, The tables are returned for all pages in incremental order as absorber object retains data form previously visited pages. For example if a document has 4 tables, this sample will print 13 tables retaining tables from previous visit/iteration. To avoid this the absorber need to reinitialized/declared inside for loop before ever page visit as below

com.aspose.pdf.TableAbsorber absorber = new com.aspose.pdf.TableAbsorber();
// Scan pages
for (com.aspose.pdf.Page page : pdfDocument.getPages()) {
absorber = new com.aspose.pdf.TableAbsorber();
absorber.visit(page);

@InCh001

Thanks for pointing out it. We will surely update our example in the documentation accordingly.