Skip to content

Commit

Permalink
Update PriceService.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Imsyp authored Sep 21, 2024
1 parent e792ae7 commit 93d60f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class PriceService {
*/
public Price getProductDetails(String platform, String category_name, String product_id) {
Path fileSystemPath = Paths.get(BASE_PATH);
Path productPath = fileSystemPath.resolve(platform).resolve(category_name).resolve(product_id);
Path productPath = fileSystemPath.resolve(platform).resolve(category_name).resolve(product_id + ".txt");

List<Map<String, Integer>> prices = new ArrayList<>();

Expand Down

0 comments on commit 93d60f2

Please sign in to comment.