Не пойму, почему выдаёт NPE
package com.javarush.task.task08.task0829;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
import java.util.HashMap;
import java.util.Map;
/*
Модернизация ПО
*/
public class Solution {
public static void main(String[] args) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
Map<String, String> map = new HashMap<>();
while (true) {
String city = reader.readLine();
String family = reader.readLine();
if (city.isEmpty() || family.isEmpty()) {
break;
}
map.put(city, family);
}
// Read the house number
String town = reader.readLine();
for (Map.Entry<String, String> pair : map.entrySet())
{
if (town.equals(pair.getKey()))
System.out.println(pair.getValue());
}
}
}