While attempting to open an MPP file in Tasks version 19.5 the process appears to hang indefinably on the save method:
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setFitContent(true);
doc.save(out, saveOptions);
By removing the setFitContent from the options it works with more files, however is still causes an issue for some files.
Is the some factor that determine this, or is there a way to stop the save to avoid issues?