Created
June 30, 2016 13:35
-
-
Save ruan65/a7a7a0d4ae23e455b5fcc1808df0cb32 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 InMemoryStore { | |
private Map<String, String> locations = new HashMap<>(); | |
public String getLocationByCode(String code) { | |
return locations.get(code); | |
} | |
public Map<String, String> setLocations() { | |
return null; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment