dhatim / fastexcel

Generate and read big Excel files quickly
Other
647 stars 116 forks source link

Worksheet : bad method setFitToPage #315

Open bouquet-cedric opened 11 months ago

bouquet-cedric commented 11 months ago

The method is written as :

    public void setFitToPage(Boolean fitToPage) {
        this.fitToPage = true;
    }

I think that it's an error and I purpose this :

    public void setFitToPage(Boolean fitToPage) {
        this.fitToPage = fitToPage;
    }
ochedru commented 11 months ago

Thank you for your report. This looks like a bug indeed: do you mind opening a PR to fix it? Thanks