@@ -503,7 +503,6 @@ private int parseComplete(final byte[] b, final int off) throws ParseException {
503
503
return 0 ;
504
504
}
505
505
506
-
507
506
/**
508
507
* Deserialize the provided bytes starting at the specified offset to construct an instance of
509
508
* 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 {
520
519
return deserialize (b , off , NO_MAX_ENCRYPTED_DATA_KEYS );
521
520
}
522
521
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
+ */
537
536
public int deserialize (final byte [] b , final int off , int maxEncryptedDataKeys )
538
537
throws ParseException {
539
538
if (b == null ) {
@@ -853,8 +852,7 @@ public void setSuiteData(byte[] suiteData) {
853
852
}
854
853
855
854
/**
856
- * Return max encrypted data keys
857
- * Package scope for unit testing.
855
+ * Return max encrypted data keys. Package scope for unit testing.
858
856
*
859
857
* @return int
860
858
*/
0 commit comments