josiahsrc / dough

This package provides some widgets you can use to create a smooshy UI.
MIT License
703 stars 28 forks source link

Use the equatable package instead of raw equals implementation #8

Closed josiahsrc closed 4 years ago

josiahsrc commented 4 years ago

Some classes (such as DoughRecipe and some of its fields) override equality checking manually using the == operator and hashcode() override. This is prone to error as more fields are added. Replace this equality checking implementation with the equatable package equality checking implementation.