23 lines
986 B
Diff
23 lines
986 B
Diff
From 00395c232cdc62d4292ce27999c026fc1f076b1d Mon Sep 17 00:00:00 2001
|
|
From: "Marvin S. Addison" <serac@vt.edu>
|
|
Date: Wed, 29 Jan 2020 16:51:35 -0500
|
|
Subject: [PATCH] Remove runtime exception from method sig.
|
|
|
|
---
|
|
src/main/java/org/cryptacular/CiphertextHeaderV2.java | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/main/java/org/cryptacular/CiphertextHeaderV2.java b/src/main/java/org/cryptacular/CiphertextHeaderV2.java
|
|
index 1fe095b..23d039e 100644
|
|
--- a/src/main/java/org/cryptacular/CiphertextHeaderV2.java
|
|
+++ b/src/main/java/org/cryptacular/CiphertextHeaderV2.java
|
|
@@ -256,7 +256,7 @@ public static CiphertextHeaderV2 decode(final InputStream input, final Function<
|
|
*
|
|
* @throws StreamException on stream IO errors.
|
|
*/
|
|
- private static void readInto(final InputStream input, final byte[] output) throws StreamException
|
|
+ private static void readInto(final InputStream input, final byte[] output)
|
|
{
|
|
try {
|
|
input.read(output);
|