Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created May 31, 2019 08:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasongorman/734ac54041f3593237048ac6a03f2fa1 to your computer and use it in GitHub Desktop.
Save jasongorman/734ac54041f3593237048ac6a03f2fa1 to your computer and use it in GitHub Desktop.
private void addItem(ShoppingBasket shoppingBasket,
String productCode,
String productDescription,
double price,
int quantity) {
Object[] item = new Object[] {
productCode ,
productDescription ,
price ,
quantity
};
shoppingBasket.getBasket().add(item);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment