Skip to content

Instantly share code, notes, and snippets.

@HDBandit
Last active December 11, 2015 22:18
Show Gist options
  • Save HDBandit/97db9898d64037397cdc to your computer and use it in GitHub Desktop.
Save HDBandit/97db9898d64037397cdc to your computer and use it in GitHub Desktop.
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