Last active
December 11, 2015 22:18
-
-
Save HDBandit/97db9898d64037397cdc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class CarFactory { | |
Car create(long frameNumber, String engine, String color) { | |
return new CarFlyWeight(frameNumber, LightCarContainer.getLightCar(engine, color)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment