Skip to content

Commit

Permalink
Update: update imports to Customer class
Browse files Browse the repository at this point in the history
  • Loading branch information
Fredrik Marjoni committed Mar 2, 2026
1 parent 7c90b5b commit 02c60a5
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/main/java/edu/group5/app/model/user/Customer.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package edu.group5.app.model.user;

import java.util.HashMap;
import java.util.Map;
import java.util.List;
import java.util.ArrayList;

import edu.group5.app.model.organization.Organization;

Expand All @@ -25,11 +25,8 @@ public class Customer extends User {
* @param passwordHash the hashed password of the customer
* @throws IllegalArgumentException if any required field is invalid
*/
public Customer(int userId,
String firstName,
String lastName,
String email,
String passwordHash) {
public Customer(int userId, String firstName, String lastName,
String email, String passwordHash) {

super(userId, "Customer", firstName, lastName, email, passwordHash);
this.preferences = new ArrayList<>();
Expand Down

0 comments on commit 02c60a5

Please sign in to comment.