@@ -503,7 +503,6 @@ private int parseComplete(final byte[] b, final int off) throws ParseException {
503503 return 0 ;
504504 }
505505
506-
507506 /**
508507 * Deserialize the provided bytes starting at the specified offset to construct an instance of
509508 * this class. Uses the default value for maxEncryptedDataKeys, which results in no limit.
@@ -520,20 +519,20 @@ public int deserialize(final byte[] b, final int off) throws ParseException {
520519 return deserialize (b , off , NO_MAX_ENCRYPTED_DATA_KEYS );
521520 }
522521
523- /**
524- * Deserialize the provided bytes starting at the specified offset to construct an instance of
525- * this class.
526- *
527- * <p>This method parses the provided bytes for the individual fields in this class. This method
528- * also supports partial parsing where not all the bytes required for parsing the fields
529- * successfully are available.
530- *
531- * @param b the byte array to deserialize.
532- * @param off the offset in the byte array to use for deserialization.
533- * @param maxEncryptedDataKeys the maximum number of EDKs to deserialize; zero indicates no
534- * maximum
535- * @return the number of bytes consumed in deserialization.
536- */
522+ /**
523+ * Deserialize the provided bytes starting at the specified offset to construct an instance of
524+ * this class.
525+ *
526+ * <p>This method parses the provided bytes for the individual fields in this class. This method
527+ * also supports partial parsing where not all the bytes required for parsing the fields
528+ * successfully are available.
529+ *
530+ * @param b the byte array to deserialize.
531+ * @param off the offset in the byte array to use for deserialization.
532+ * @param maxEncryptedDataKeys the maximum number of EDKs to deserialize; zero indicates no
533+ * maximum
534+ * @return the number of bytes consumed in deserialization.
535+ */
537536 public int deserialize (final byte [] b , final int off , int maxEncryptedDataKeys )
538537 throws ParseException {
539538 if (b == null ) {
@@ -853,8 +852,7 @@ public void setSuiteData(byte[] suiteData) {
853852 }
854853
855854 /**
856- * Return max encrypted data keys
857- * Package scope for unit testing.
855+ * Return max encrypted data keys. Package scope for unit testing.
858856 *
859857 * @return int
860858 */
0 commit comments