From 25d64e2e555301cfdbbfeacbaa9363bf6f5cb822 Mon Sep 17 00:00:00 2001 From: BryanZhao <bohanz04@uw.edu> Date: Mon, 12 Feb 2024 23:22:59 -0800 Subject: [PATCH] Another change in Products.java --- Products.java | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Products.java b/Products.java index 826fd00..061a8a7 100644 --- a/Products.java +++ b/Products.java @@ -1,6 +1,15 @@ /* check out these products! */ public class Products { /* a good class, but not as good as cse391 */ - + public Product bohanz04Product() { + return new Product( + "CSE351 hw problem", + "A confusing problem faced", + "test2.jpg", + "image of that problem", + 1.00 + ); + } + public Product kevinh33Product() { return new Product( "Duolingo owl", -- GitLab