Remove #initialize method from model classes

... in favor of initialization via constructors. It's fine to break out
a separate private initialization method, but it appears to be
unnecessary to formally model an initialization lifecycle distinct from
construction.
This commit is contained in:
Chris Beams 2014-11-22 11:22:18 +01:00
parent c7e98df174
commit feb891b0dc
No known key found for this signature in database
GPG key ID: 3D214F8F5BC5ED73
22 changed files with 23 additions and 151 deletions

View file

@ -51,7 +51,6 @@ public class CreateOfferPMTest {
model = new CreateOfferModel(null, null, null, null, null, null, formatter);
presenter = new CreateOfferPM(model, new FiatValidator(null), new BtcValidator(), formatter);
presenter.initialize();
}
@Test