Skip to content

Commit

Permalink
Changed Order of User.java Methods
Browse files Browse the repository at this point in the history
  • Loading branch information
efentress2025 committed Nov 28, 2023
1 parent 64274fa commit 31ea4d2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/src/main/java/cse/gradle/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class User {
private String username;
private List<Recipe> recipeList;

public User(String username, List<Recipe>recipeList) {
public User(String username, List<Recipe> recipeList) {
this.username = username;
this.recipeList = recipeList;
this.id = UUID.randomUUID();
Expand All @@ -23,11 +23,11 @@ public List<Recipe> getRecipeList() {
return recipeList;
}

public void setRecipeList(List<Recipe> recipeList) {
this.recipeList = recipeList;
}

public UUID getId() {
return id;
}

public void setRecipeList(List<Recipe> recipeList) {
this.recipeList = recipeList;
}
}

0 comments on commit 31ea4d2

Please sign in to comment.