这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -995,6 +995,11 @@ public RenderTask(boolean thumbnail, int page, float scale) {
this.page = page;
this.scale = scale;
}

@Override
public boolean cancel(boolean mayInterruptIfRunning) {
return super.cancel(false); // #21: Must not interrupt pdfbox otherwise the PDDocument will no longer be able to render pages
}

@Override
protected Image call() {
Expand Down
Loading