Skip to content

Commit d1ab593

Browse files
committed
fix #362
1 parent 0696638 commit d1ab593

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/FikaAmazonAPI/Services/CatalogItemService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ public CatalogItemService(AmazonCredential amazonCredential) : base(amazonCreden
1717

1818
}
1919

20-
[Obsolete("This method deprecated in June 2022. Please use SearchCatalogItems202204 instead.", true)]
20+
[Obsolete("This method deprecated in June 2022. Please use SearchCatalogItems202204 instead.", false)]
2121
public IList<Item> ListCatalogItems(ParameterListCatalogItems parameterListCatalogItems) =>
2222
Task.Run(() => ListCatalogItemsAsync(parameterListCatalogItems)).ConfigureAwait(false).GetAwaiter().GetResult();
2323

24-
[Obsolete("This method deprecated in June 2022. Please use SearchCatalogItems202204Async instead.", true)]
24+
[Obsolete("This method deprecated in June 2022. Please use SearchCatalogItems202204Async instead.", false)]
2525
public async Task<IList<Item>> ListCatalogItemsAsync(ParameterListCatalogItems parameterListCatalogItems)
2626
{
2727
if (string.IsNullOrEmpty(parameterListCatalogItems.MarketplaceId))

0 commit comments

Comments
 (0)