Skip to content

Commit fd4326f

Browse files
committed
Fix build warnings.
1 parent a8a9c8c commit fd4326f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/com/microsoft/azure/documentdb/DocumentClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1017,7 +1017,7 @@ public StoredProcedureResponse executeStoredProcedure(String storedProcedureLink
10171017
* Executes a stored procedure by the stored procedure link.
10181018
*
10191019
* @param storedProcedureLink the stored procedure link.
1020-
* @options the request options.
1020+
* @param options the request options.
10211021
* @param procedureParams the array of procedure parameter values.
10221022
* @return the stored procedure response.
10231023
* @throws DocumentClientException the document client exception.

src/com/microsoft/azure/documentdb/HashPartitionResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public String resolveForCreate(Object document) {
130130
/**
131131
* Resolves the collection for reading/querying the documents based on the partition key.
132132
*
133-
* @param document the document to be read/queried.
133+
* @param partitionKey the partition key used to resolve the collection.
134134
*
135135
* @return collection Self link(s) or Name based link(s) which should handle the Read operation
136136
*/

src/com/microsoft/azure/documentdb/OfferV2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public int getOfferThroughput() {
5050
/**
5151
* Sets the offer throughput for this offer.
5252
*
53-
* @param offergetOofferThroughput
53+
* @param throughput
5454
* the throughput of this offer.
5555
*/
5656
public void setOfferThroughput(int throughput) {

src/com/microsoft/azure/documentdb/PartitionKey.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ public PartitionKey(Object key) {
2727
/**
2828
* Create a new instance of the PartitionKey object from a serialized JSON string.
2929
*
30-
* @param key
31-
* the value of the partition key.
30+
* @param jsonString
31+
* the value of the partition key in JSON form.
3232
*
3333
* @return the PartitionKey instance.
3434
*/

src/com/microsoft/azure/documentdb/RangePartitionResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public String resolveForCreate(Object document) {
8181
/**
8282
* Resolves the collection for reading/querying the documents based on the partition key.
8383
*
84-
* @param document the document to be read/queried.
84+
* @param partitionKey the partition key used to resolve the collection.
8585
*
8686
* @return collection Self link(s) or Name based link(s) which should handle the Read operation.
8787
*/

0 commit comments

Comments
 (0)