Slide 7
Slide 7 text
Code duplication, copy-paste
Thing thing = new Thing();
thing.setPrice(20);
thing.setColor(RED);
Thing thing2 = new Thing();
thing2.setPrice(25);
thing.setColor(GREEN);
Better:
Thing thing = new Thing(20, RED);
Thing thing2 = new Thing(25, GREEN);
Or
Thing thing = Thing.newInstance(20, RED);
Thing thing2 = Thing.newInstance(25, GREEN);