Guest User

Untitled

a guest
Apr 19th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public boolean add(Continent continent, Country country) {
  2. if (continent == null || country == null) {
  3. return false;
  4. }
  5.  
  6. if (!continents.containsKey(continent)) {
  7. continents.put(continent, new CountryUnionImpl());
  8. }
  9.  
  10. return continents.get(continent).add(country);
  11. }
Add Comment
Please, Sign In to add comment