Skip to content

Commit 19dc64f

Browse files
🪴 #67 resolved
1 parent 388c772 commit 19dc64f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/com/contentstack/sdk/Query.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1294,9 +1294,9 @@ public void getResultObject(List<Object> objects, JSONObject jsonObject, boolean
12941294
/**
12951295
* This method adds key and value to an Entry. Parameters:
12961296
*
1297-
* @param paramKey:
1297+
* @param key:
12981298
* The key as string which needs to be added to the Query
1299-
* @param paramValue:
1299+
* @param value:
13001300
* The value as string which needs to be added to the Query
13011301
* @return - Query
13021302
*
@@ -1315,8 +1315,8 @@ public void getResultObject(List<Object> objects, JSONObject jsonObject, boolean
13151315
* });
13161316
* </pre>
13171317
*/
1318-
public Query addParam(@NotNull String paramKey, @NotNull String paramValue) {
1319-
urlQueries.put(paramKey, paramValue);
1318+
public Query addParam(@NotNull String key, @NotNull String value) {
1319+
urlQueries.put(key, value);
13201320
return this;
13211321
}
13221322

0 commit comments

Comments
 (0)