Skip to content

Commit

Permalink
Revert 4937a4a
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelm committed Dec 16, 2024
1 parent 206d05c commit 803a466
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,6 @@ public List<ItemVariation> getVariations() throws JSONException {
v.setDescription(variation.optJSONObject("description"));
v.setPosition(variation.getLong("position"));
v.setPrice(new BigDecimal(variation.getString("price")));
v.setListed_price(new BigDecimal(variation.getString("price")));
v.setServer_id(variation.getLong("id"));
v.setValue(variation.getJSONObject("value"));
v.setAvailable_from(variation.optString("available_from"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ class Item(
v.description = variation.optJSONObject("description")
v.position = variation.getLong("position")
v.price = BigDecimal(variation.getString("price"))
v.listed_price = BigDecimal(variation.getString("price"))
v.server_id = variation.getLong("id")
v.value = variation.getJSONObject("value")
v.available_from = variation.optString("available_from")
Expand Down

0 comments on commit 803a466

Please sign in to comment.