Skip to content

Commit

Permalink
Fix argument assign (firebase#70)
Browse files Browse the repository at this point in the history
Only the argument `photo` is not assigned to the class property.
  • Loading branch information
shoarai authored and samtstern committed Jan 2, 2020
1 parent e1db59c commit a169728
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public Restaurant(String name, String city, String category, String photo,
this.name = name;
this.city = city;
this.category = category;
this.photo = photo;
this.price = price;
this.numRatings = numRatings;
this.avgRating = avgRating;
Expand Down

0 comments on commit a169728

Please sign in to comment.