From 6176a63049d82d6ab84a29cc54d7a4707ff8223d Mon Sep 17 00:00:00 2001 From: Adrian Sutton Date: Tue, 26 Feb 2019 11:05:10 +1000 Subject: [PATCH] Add missing JavaDoc tags. (#963) Signed-off-by: Adrian Sutton --- .../src/main/java/tech/pegasys/pantheon/cli/rlp/JSONToRLP.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pantheon/src/main/java/tech/pegasys/pantheon/cli/rlp/JSONToRLP.java b/pantheon/src/main/java/tech/pegasys/pantheon/cli/rlp/JSONToRLP.java index 7349748b1b..70696a8479 100644 --- a/pantheon/src/main/java/tech/pegasys/pantheon/cli/rlp/JSONToRLP.java +++ b/pantheon/src/main/java/tech/pegasys/pantheon/cli/rlp/JSONToRLP.java @@ -22,7 +22,9 @@ interface JSONToRLP { /** * Encodes the object into an RLP value. * + * @param json the JSON to convert to RLP * @return the RLP encoded object. + * @throws IOException if an error occurs while reading data */ BytesValue encode(String json) throws IOException; }