Skip to content

Commit c5ffd63

Browse files
Fix broken javadoc
In addition to some bad JavaDoc comments this informs the JavaDoc plugin of our source version to avoid other errors.
1 parent 1c858a1 commit c5ffd63

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@
115115
<minmemory>128m</minmemory>
116116
<maxmemory>1024m</maxmemory>
117117
<doclint>none</doclint>
118+
<source>8</source>
118119
</configuration>
119120
</plugin>
120121
</plugins>

src/main/java/com/amazonaws/encryptionsdk/MasterKeyProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public K getMasterKey(final String keyId) throws UnsupportedProviderException, N
6161
* @param keyId
6262
* @return
6363
* @throws UnsupportedProviderException
64-
* if this object cannot return {@link MasterKeys} associated with the given
64+
* if this object cannot return {@link MasterKey}s associated with the given
6565
* provider
6666
* @throws NoSuchMasterKeyException
6767
* if this object cannot find (and thus construct) the {@link MasterKey} associated

src/main/java/com/amazonaws/encryptionsdk/internal/CryptoHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public interface CryptoHandler {
5454
/**
5555
* Return the size of the output buffer required for a
5656
* {@link #processBytes(byte[], int, int, byte[], int)} plus a {@link #doFinal(byte[], int)}
57-
* call with an input of {@code inLen) bytes.
57+
* call with an input of {@code inLen} bytes.
5858
*
5959
* <p>
6060
* Note this method is allowed to return an estimation of the output size that is <i>greater</i>

src/main/java/com/amazonaws/encryptionsdk/model/CiphertextHeaders.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ public CiphertextHeaders() {
105105
* @param encryptionContext
106106
* the bytes containing the encryption context to set in the
107107
* header.
108-
* @param keyBlob
109-
* the keyBlob object containing the key provider id, key
108+
* @param keyBlobs
109+
* list of keyBlobs containing the key provider id, key
110110
* provider info, and encrypted data key to encode in the header.
111111
* @param contentType
112112
* the content type to set in the header.

0 commit comments

Comments
 (0)