document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /* W starszych wersjach JSE */
  2. Map<String, List<String>> myMap = new HashMap<String, List<String>>()
  3.  
  4. /*w JAVA 7 */
  5.  
  6. Map<String, List<String>> myMap = new HashMap<>();
');