Skip to content

Commit

Permalink
No-arg constructor for investment plan
Browse files Browse the repository at this point in the history
  • Loading branch information
simpsus authored and buchen committed Jun 26, 2013
1 parent d03c12b commit bbb3603
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ public class InvestmentPlan

private List<PortfolioTransaction> transactions = new ArrayList<PortfolioTransaction>();

public InvestmentPlan()
{
// needed for xstream de-serialization
}

public InvestmentPlan(String name)
{
this.name = name;
Expand Down

0 comments on commit bbb3603

Please sign in to comment.