@@ -30,15 +30,14 @@ public CategoryClient(CategoryInterface CategoryInterface) {
3030
3131 /**
3232 * Searches for categories containing the specified string.
33- * It will be converted to Lower Case as the server performs Case-insensitive search.
3433 *
3534 * @param filter The string to be searched
3635 * @param itemLimit How many results are returned
3736 * @param offset Starts returning items from the nth result. If offset is 9, the response starts with the 9th item of the search result
3837 * @return
3938 */
4039 public Observable <String > searchCategories (String filter , int itemLimit , int offset ) {
41- return responseToCategoryName (CategoryInterface .searchCategories (filter . toLowerCase () , itemLimit , offset ));
40+ return responseToCategoryName (CategoryInterface .searchCategories (filter , itemLimit , offset ));
4241
4342 }
4443
@@ -56,15 +55,14 @@ public Observable<String> searchCategories(String filter, int itemLimit) {
5655
5756 /**
5857 * Searches for categories starting with the specified string.
59- * It will be converted to Lower Case as the server performs Case-insensitive search.
6058 *
6159 * @param prefix The prefix to be searched
6260 * @param itemLimit How many results are returned
6361 * @param offset Starts returning items from the nth result. If offset is 9, the response starts with the 9th item of the search result
6462 * @return
6563 */
6664 public Observable <String > searchCategoriesForPrefix (String prefix , int itemLimit , int offset ) {
67- return responseToCategoryName (CategoryInterface .searchCategoriesForPrefix (prefix . toLowerCase () , itemLimit , offset ));
65+ return responseToCategoryName (CategoryInterface .searchCategoriesForPrefix (prefix , itemLimit , offset ));
6866 }
6967
7068 /**
0 commit comments