Skip to content

Commit 10c76f2

Browse files
committed
pdfbox:fix build
1 parent f2b0b1b commit 10c76f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/pdfbox/project-parent/fuzz-targets/src/test/java/com/example/PDFStreamParserFuzzer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ static void setUp() {
3434
}
3535

3636
@FuzzTest
37-
void myFuzzTest(FuzzedDataProvider data) {
37+
void myFuzzTest(FuzzedDataProvider data) throws IOException {
3838
byte [] bytes = data.consumeRemainingAsBytes();
3939
PDFStreamParser pdfStreamParser = new PDFStreamParser(bytes);
4040

@@ -43,4 +43,4 @@ void myFuzzTest(FuzzedDataProvider data) {
4343
} catch (IOException e) {
4444
}
4545
}
46-
}
46+
}

0 commit comments

Comments
 (0)