Skip to content

Commit

Permalink
Remove BaseNutritionalValues, this wasn't used anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandgeider committed May 12, 2024
1 parent d875d81 commit ef78bc5
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions lib/models/nutrition/nutritional_values.dart
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,3 @@ class NutritionalValues {
int get hashCode => Object.hash(
energy, protein, carbohydrates, carbohydratesSugar, fat, fatSaturated, fibres, sodium);
}

class BaseNutritionalValues {
double protein = 0;
double carbohydrates = 0;
double fat = 0;

BaseNutritionalValues(this.protein, this.carbohydrates, this.fat);
}

0 comments on commit ef78bc5

Please sign in to comment.