Skip to content

Instantly share code, notes, and snippets.

@ankurpshah
Created July 27, 2013 08:30
Show Gist options
  • Save ankurpshah/6094245 to your computer and use it in GitHub Desktop.
Save ankurpshah/6094245 to your computer and use it in GitHub Desktop.
Mutable state example
public class Customer {
// No setter method
private final List<Order> orders;
public List<Order> getOrders() { return orders; }
public Customer(...) {...}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment