57585960616263646566
if (user.name.startsWith(filter) || user.familyName.startsWith(filter)) { store.add(user); } } if (store.isEmpty()) throw new NoMatchesException(); return store; } }