Skip to content

Commit 412a02c

Browse files
authored
fix: remove illegal javadoc syntax (#147)
1 parent 27d2039 commit 412a02c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/main/java/software/amazon/encryption/s3/S3AsyncEncryptionClient.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,8 @@ public static Consumer<AwsRequestOverrideConfiguration.Builder> withAdditionalEn
101101
* size of the content is expected to be known up front. See {@link AsyncRequestBody} for specific details on
102102
* implementing this interface as well as links to precanned implementations for common scenarios like
103103
* uploading from a file.
104-
* @return A Java Future containing the result of the PutObject operation returned by the service.<br/>
104+
* @return A Java Future containing the result of the PutObject operation returned by the service.
105+
* <p>
105106
* The CompletableFuture returned by this method can be completed exceptionally with the following
106107
* exceptions.
107108
* <ul>
@@ -111,6 +112,7 @@ public static Consumer<AwsRequestOverrideConfiguration.Builder> withAdditionalEn
111112
* credentials, etc.</li>
112113
* <li>S3EncryptionClientException Base class for all encryption client specific exceptions.</li>
113114
* </ul>
115+
* </p>
114116
*/
115117
@Override
116118
public CompletableFuture<PutObjectResponse> putObject(PutObjectRequest putObjectRequest, AsyncRequestBody requestBody)
@@ -158,7 +160,8 @@ private CompletableFuture<PutObjectResponse> multipartPutObject(PutObjectRequest
158160
* The response transformer for processing the streaming response in a non-blocking manner. See
159161
* {@link AsyncResponseTransformer} for details on how this callback should be implemented and for links to
160162
* precanned implementations for common scenarios like downloading to a file.
161-
* @return A future to the transformed result of the AsyncResponseTransformer.<br/>
163+
* @return A future to the transformed result of the AsyncResponseTransformer.
164+
* <p>
162165
* The CompletableFuture returned by this method can be completed exceptionally with the following
163166
* exceptions.
164167
* <ul>
@@ -170,6 +173,7 @@ private CompletableFuture<PutObjectResponse> multipartPutObject(PutObjectRequest
170173
* credentials, etc.</li>
171174
* <li>S3EncryptionClientException Base class for all encryption client exceptions.</li>
172175
* </ul>
176+
* </p>
173177
*/
174178
@Override
175179
public <T> CompletableFuture<T> getObject(GetObjectRequest getObjectRequest,

0 commit comments

Comments
 (0)