If you want to stick with the stream API, you should refactor your code.
List<Ctry> result = new ArrayList<Ctry>();
activeRow.stream()
.map(obj -> this.findCtry(obj, true))
.filter(ctrys -> !ctrys.isEmpty())
.findFirst()
.ifPresent(result::addAll);