File tree Expand file tree Collapse file tree 2 files changed +0
-2
lines changed
libpretixsync/src/main/java/eu/pretix/libpretixsync Expand file tree Collapse file tree 2 files changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -312,7 +312,6 @@ public List<ItemVariation> getVariations() throws JSONException {
312312 v .setDescription (variation .optJSONObject ("description" ));
313313 v .setPosition (variation .getLong ("position" ));
314314 v .setPrice (new BigDecimal (variation .getString ("price" )));
315- v .setListed_price (new BigDecimal (variation .getString ("price" )));
316315 v .setServer_id (variation .getLong ("id" ));
317316 v .setValue (variation .getJSONObject ("value" ));
318317 v .setAvailable_from (variation .optString ("available_from" ));
Original file line number Diff line number Diff line change @@ -67,7 +67,6 @@ class Item(
6767 v.description = variation.optJSONObject(" description" )
6868 v.position = variation.getLong(" position" )
6969 v.price = BigDecimal (variation.getString(" price" ))
70- v.listed_price = BigDecimal (variation.getString(" price" ))
7170 v.server_id = variation.getLong(" id" )
7271 v.value = variation.getJSONObject(" value" )
7372 v.available_from = variation.optString(" available_from" )
You can’t perform that action at this time.
0 commit comments