From 513a91b41e0daa7e19c2029e2b747f1cff21f52b Mon Sep 17 00:00:00 2001 From: r-ca Date: Tue, 9 Jan 2024 17:04:42 +0900 Subject: [PATCH] =?UTF-8?q?throws=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/one/nem/lacerta/processor/DocumentProcessor.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/processor/src/main/java/one/nem/lacerta/processor/DocumentProcessor.java b/processor/src/main/java/one/nem/lacerta/processor/DocumentProcessor.java index abca8a84..d5584c24 100644 --- a/processor/src/main/java/one/nem/lacerta/processor/DocumentProcessor.java +++ b/processor/src/main/java/one/nem/lacerta/processor/DocumentProcessor.java @@ -7,9 +7,9 @@ public interface DocumentProcessor { // ページ操作 void addNewPageToLast(Bitmap bitmap) throws Exception; void addNewPagesToLast(Bitmap[] bitmaps) throws Exception; - void addNewPageAfterIndex(Bitmap bitmap, int index); - void addNewPageBeforeIndex(Bitmap bitmap, int index); - void removePageAtIndex(int index); + void addNewPageAfterIndex(Bitmap bitmap, int index) throws Exception; + void addNewPageBeforeIndex(Bitmap bitmap, int index) throws Exception; + void removePageAtIndex(int index) throws Exception; // 更新 void updatePageAtIndex(Bitmap bitmap, int index);