Skip to content

Commit 4361709

Browse files
committed
Added the description for a method
1 parent 769d430 commit 4361709

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

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

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,23 @@ public AssetLibrary addParam(@NotNull String paramKey, @NotNull Object paramValu
154154
urlQueries.put(paramKey, paramValue);
155155
return this;
156156
}
157-
157+
158+
/**
159+
* Remove param key assetlibrary.
160+
*
161+
* @param paramKey the param key
162+
* @return the assetlibrary
163+
*
164+
* <br>
165+
* <br>
166+
* <b>Example :</b><br>
167+
*
168+
* <pre class="prettyprint">
169+
* Stack stack = Contentstack.stack("apiKey", "deliveryToken", "environment");
170+
* AssetLibrary assetLibObject = stack.assetlibrary();
171+
* assetLibObject.removeParam(paramKey);
172+
* </pre>
173+
*/
158174
public AssetLibrary removeParam(@NotNull String paramKey){
159175
if(urlQueries.has(paramKey)){
160176
urlQueries.remove(paramKey);

0 commit comments

Comments
 (0)