@@ -163,16 +163,10 @@ List<String> taxIds = new LinkedList<>();
163163taxIds. add(" #SalesTax" );
164164
165165List<CatalogObject > variations = new LinkedList<> ();
166- Money priceMoney = new Money .Builder ()
167- .amount(150L )
168- .currency(" USD" )
169- .build();
170-
171166CatalogItemVariation itemVariationData = new CatalogItemVariation .Builder ()
172167 .itemId(" #Tea" )
173168 .name(" Mug" )
174169 .pricingType(" FIXED_PRICING" )
175- .priceMoney(priceMoney)
176170 .build();
177171
178172CatalogObject variations0 = new CatalogObject .Builder (
@@ -204,16 +198,10 @@ List<String> taxIds = new LinkedList<>();
204198taxIds. add(" #SalesTax" );
205199
206200List<CatalogObject > variations = new LinkedList<> ();
207- Money priceMoney = new Money .Builder ()
208- .amount(250L )
209- .currency(" USD" )
210- .build();
211-
212201CatalogItemVariation itemVariationData = new CatalogItemVariation .Builder ()
213202 .itemId(" #Coffee" )
214203 .name(" Regular" )
215204 .pricingType(" FIXED_PRICING" )
216- .priceMoney(priceMoney)
217205 .build();
218206
219207CatalogObject variations0 = new CatalogObject .Builder (
@@ -224,16 +212,10 @@ CatalogObject variations0 = new CatalogObject.Builder(
224212 .build();
225213
226214variations. add(variations0);
227- Money priceMoney = new Money .Builder ()
228- .amount(350L )
229- .currency(" USD" )
230- .build();
231-
232215CatalogItemVariation itemVariationData = new CatalogItemVariation .Builder ()
233216 .itemId(" #Coffee" )
234217 .name(" Large" )
235218 .pricingType(" FIXED_PRICING" )
236- .priceMoney(priceMoney)
237219 .build();
238220
239221CatalogObject variations1 = new CatalogObject .Builder (
@@ -517,16 +499,10 @@ CatalogObject variations0 = new CatalogObject.Builder(
517499 .build();
518500
519501variations. add(variations0);
520- Money priceMoney = new Money .Builder ()
521- .amount(400L )
522- .currency(" USD" )
523- .build();
524-
525502CatalogItemVariation itemVariationData = new CatalogItemVariation .Builder ()
526503 .itemId(" #Cocoa" )
527504 .name(" Large" )
528505 .pricingType(" FIXED_PRICING" )
529- .priceMoney(priceMoney)
530506 .build();
531507
532508CatalogObject variations1 = new CatalogObject .Builder (
0 commit comments