Skip to content
This repository was archived by the owner on Jul 19, 2024. It is now read-only.

Commit 9f22464

Browse files
rickle-msftmirobers
authored andcommitted
Fixed javadoc errors (#290)
1 parent 8f6c29f commit 9f22464

File tree

2 files changed

+9
-15
lines changed

2 files changed

+9
-15
lines changed

microsoft-azure-storage/src/com/microsoft/azure/storage/blob/BlobRequestOptions.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,8 @@ public BlobRequestOptions(final BlobRequestOptions other) {
110110
* BlobType of the current operation
111111
* @param client
112112
* A {@link CloudBlobClient} object that represents the service client used to set the default timeout
113-
* interval and retry policy, if they are <code>null</code>. Additionally, if the
114-
* {@link #concurrentRequestCount} field's value is null, it will be set to the value specified by the
115-
* cloud blob client's {@link CloudBlobClient#getConcurrentRequestCount} method.
113+
* interval and retry policy, if they are <code>null</code>. Additionally, the default value of
114+
* {@link #concurrentRequestCount} is <code>1</code>.
116115
*/
117116
protected static final BlobRequestOptions populateAndApplyDefaults(final BlobRequestOptions options,
118117
final BlobType blobType, final CloudBlobClient client) {
@@ -129,9 +128,8 @@ protected static final BlobRequestOptions populateAndApplyDefaults(final BlobReq
129128
* BlobType of the current operation
130129
* @param client
131130
* A {@link CloudBlobClient} object that represents the service client used to set the default timeout
132-
* interval and retry policy, if they are <code>null</code>. Additionally, if the
133-
* {@link #concurrentRequestCount} field's value is null, it will be set to the value specified by the
134-
* cloud blob client's {@link CloudBlobClient#getConcurrentRequestCount} method.
131+
* interval and retry policy, if they are <code>null</code>. Additionally, the default value of
132+
* {@link #concurrentRequestCount} is <code>1</code>.
135133
* @param setStartTime
136134
* whether to initialize the startTimeInMs field, or not
137135
*/

microsoft-azure-storage/src/com/microsoft/azure/storage/file/FileRequestOptions.java

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@
2929
public final class FileRequestOptions extends RequestOptions {
3030

3131
/**
32-
* Represents the concurrent number of simultaneous requests per operation. If it's null, it will be set to the
33-
* value specified by the cloud file client's {@link CloudFileClient#getConcurrentRequestCount} method during upload
34-
* operations.
32+
* Represents the concurrent number of simultaneous requests per operation. The default value is <code>1</code>.
3533
*/
3634
private Integer concurrentRequestCount = null;
3735

@@ -85,9 +83,8 @@ public FileRequestOptions(final FileRequestOptions other) {
8583
* The input options to copy from when applying defaults
8684
* @param client
8785
* A {@link CloudFileClient} object that represents the service client used to set the default timeout
88-
* interval and retry policy, if they are <code>null</code>. Additionally, if the
89-
* {@link #concurrentRequestCount} field's value is null, it will be set to the value specified by the
90-
* cloud file client's {@link CloudFileClient#getConcurrentRequestCount} method.
86+
* interval and retry policy, if they are <code>null</code>. Additionally, the default value of
87+
* {@link #concurrentRequestCount} is <code>1</code>.
9188
*/
9289
protected static final FileRequestOptions populateAndApplyDefaults(final FileRequestOptions options,
9390
final CloudFileClient client) {
@@ -102,9 +99,8 @@ protected static final FileRequestOptions populateAndApplyDefaults(final FileReq
10299
* The input options to copy from when applying defaults
103100
* @param client
104101
* A {@link CloudFileClient} object that represents the service client used to set the default timeout
105-
* interval and retry policy, if they are <code>null</code>. Additionally, if the
106-
* {@link #concurrentRequestCount} field's value is null, it will be set to the value specified by the
107-
* cloud blob client's {@link CloudFileClient#getConcurrentRequestCount} method.
102+
* interval and retry policy, if they are <code>null</code>. Additionally, the default value of
103+
* {@link #concurrentRequestCount} is <code>1</code>.
108104
* @param setStartTime
109105
* whether to initialize the startTimeInMs field, or not
110106
*/

0 commit comments

Comments
 (0)