Skip to content
Snippets Groups Projects
Commit ad77f72a authored by Camie Sawa's avatar Camie Sawa
Browse files

fix missing parenthesis

parent b7ce8de9
No related branches found
No related tags found
1 merge request!198csawa bunny
Pipeline #631245 passed
......@@ -5,7 +5,7 @@ import static java.util.Map.entry;
public class Build {
private static Map<String, Product> products = Map.ofEntries(
entry("bunny", new Product("Picture of a while bunny", "A picture of miffy", "miffy.jpeg", "Picture of a while bunny holding a balloon", "$5"),
entry("bunny", new Product("Picture of a while bunny", "A picture of miffy", "miffy.jpeg", "Picture of a while bunny holding a balloon", "$5")),
entry("Yotsuba200", new Product("A picture of Yotsuba", "yotsuba pic", "yotsubarun.jpg", "This is a yotsuba picture", "$100")),
entry("pokemoncards", new Product("Pokemon Cards", "A pack of pokémon trading cards from genetic apex to enhance your collection", "pokemon-cards.jpg", "A pack of Pokémon trading cards featuring Pikachu on the cover ", "$3.99")),
entry("sourcandies", new Product("Sour candy", "Rainbow colored different texture candy", "sour.jpg", "Multiple pieces of rainbow colored sour candy in different shapes","$5")),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment