coldstar96 / cse403

Budget Manager Project
1 stars 2 forks source link

Move budget list to budget #93

Closed brucec5 closed 11 years ago

brucec5 commented 11 years ago

This pull request refactors the place where you access the budget list to be a static field within Budget instead of withing UBudgetApp. This lets us handle adding/removing from within Budget instead of from wherever the code is used. This also lets us return an unmodifiable list when getting it, since we won't be fiddling with the list elsewhere.

This is mainly done to hopefully allow us to test a couple of activities.

CardboardAqueduct commented 11 years ago

Functionality is mostly moving the budget list form the app to a static list inside of the budget object.

Looks good to go.