jferard / fastods

A very fast and lightweight (no dependency) library for creating ODS (Open Document Spreadsheet, mainly for Calc) files in Java. It's a Martin Schulz's SimpleODS fork
GNU General Public License v3.0
35 stars 6 forks source link

Examples are using deprecated method #245

Closed jferard closed 1 year ago

jferard commented 1 year ago

All examples are using the following method:

    @Deprecated
    public void saveAs(final File file) throws IOException {
    ...
    }

Should be saveAs(final Path path).