diff --git a/pom.xml b/pom.xml
index 0d2f121..844a593 100644
--- a/pom.xml
+++ b/pom.xml
@@ -14,7 +14,7 @@
com.keepa.api
backend
- 1.72
+ 1.73
jar
Keepa Java Framework
diff --git a/src/main/java/com/keepa/api/backend/KeepaAPI.java b/src/main/java/com/keepa/api/backend/KeepaAPI.java
index 1a5c8f9..d300f0c 100644
--- a/src/main/java/com/keepa/api/backend/KeepaAPI.java
+++ b/src/main/java/com/keepa/api/backend/KeepaAPI.java
@@ -94,6 +94,7 @@ public void shutdown(boolean shutdownNow) {
final public Promise sendRequest(Request r) {
return sendRequest(r, 30000, 120000);
}
+
/**
* Issue a request to the Keepa Price Data API.
* If your tokens are depleted, this method will fail.
diff --git a/src/main/java/com/keepa/api/backend/structs/Request.java b/src/main/java/com/keepa/api/backend/structs/Request.java
index 3d635e6..d10fc62 100644
--- a/src/main/java/com/keepa/api/backend/structs/Request.java
+++ b/src/main/java/com/keepa/api/backend/structs/Request.java
@@ -389,7 +389,7 @@ public static Request getProductSearchRequest(final AmazonLocale domainId, Strin
* @param history Whether or not to include the product's history data (csv field). If you do not evaluate the csv field set to false to speed up the request and reduce traffic.
* @param update If the product's last refresh is older than update-hours force a refresh. Use this to speed up requests if up-to-date data is not required. Might cost an extra token if 0 (= live data). Default 1.
* @param stats If specified (= not null) the product object will have a stats field with quick access to current prices, min/max prices and the weighted mean values of the last x days, where x is the value of the stats parameter.
- * @param asinsOnly If true only the ASINs of the found products will be provided (instead of the product objects). If this parameter is used the token cost of the request is reduced to 5 tokens.
+ * @param asinsOnly If true only the ASINs of the found products will be provided (instead of the product objects).
* @return A ready to send request.
*/
public static Request getProductSearchRequest(final AmazonLocale domainId, String term, Integer stats, int update, boolean history, boolean asinsOnly) {
@@ -416,7 +416,7 @@ public static Request getProductSearchRequest(final AmazonLocale domainId, Strin
* @param history Whether or not to include the product's history data (csv field). If you do not evaluate the csv field set to false to speed up the request and reduce traffic.
* @param update If the product's last refresh is older than update-hours force a refresh. Use this to speed up requests if up-to-date data is not required. Might cost an extra token if 0 (= live data). Default 1.
* @param stats If specified (= not null) the product object will have a stats field with quick access to current prices, min/max prices and the weighted mean values of the last x days, where x is the value of the stats parameter.
- * @param asinsOnly If true only the ASINs of the found products will be provided (instead of the product objects). If this parameter is used the token cost of the request is reduced to 5 tokens.
+ * @param asinsOnly If true only the ASINs of the found products will be provided (instead of the product objects).
* @param page Valid values 0 - 9. Each search result page provides up to 10 results. To retrieve more results iterate the page parameter and keep all other parameters identical. Start with page 0 and stop when the response contains less than 10 results or you have reached page 9, which is the limit. When not using the page parameter the first 40 results will be returned.
* @return A ready to send request.
*/