Skip to content

Commit

Permalink
Fix broken javadoc
Browse files Browse the repository at this point in the history
In addition to some bad JavaDoc comments this informs the JavaDoc plugin
of our source version to avoid other errors.
  • Loading branch information
SalusaSecondus committed May 10, 2019
1 parent 1c858a1 commit c5ffd63
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@
<minmemory>128m</minmemory>
<maxmemory>1024m</maxmemory>
<doclint>none</doclint>
<source>8</source>
</configuration>
</plugin>
</plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public K getMasterKey(final String keyId) throws UnsupportedProviderException, N
* @param keyId
* @return
* @throws UnsupportedProviderException
* if this object cannot return {@link MasterKeys} associated with the given
* if this object cannot return {@link MasterKey}s associated with the given
* provider
* @throws NoSuchMasterKeyException
* if this object cannot find (and thus construct) the {@link MasterKey} associated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public interface CryptoHandler {
/**
* Return the size of the output buffer required for a
* {@link #processBytes(byte[], int, int, byte[], int)} plus a {@link #doFinal(byte[], int)}
* call with an input of {@code inLen) bytes.
* call with an input of {@code inLen} bytes.
*
* <p>
* Note this method is allowed to return an estimation of the output size that is <i>greater</i>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ public CiphertextHeaders() {
* @param encryptionContext
* the bytes containing the encryption context to set in the
* header.
* @param keyBlob
* the keyBlob object containing the key provider id, key
* @param keyBlobs
* list of keyBlobs containing the key provider id, key
* provider info, and encrypted data key to encode in the header.
* @param contentType
* the content type to set in the header.
Expand Down

0 comments on commit c5ffd63

Please sign in to comment.