List refs = parent.getPrioritizedRefs();
Iterator it = refs.iterator();
//// try each one in turn
while (it.hasNext()) {
Ref ref = (Ref)it.next();
checkMaxRefs(xrdsOut, ref.getValue(), state);
XRI refXRI;
try {
refXRI = parseAbsoluteQXRIOrError(ref.getValue());
}
catch (PartialResolutionException e) {
xrdsOut.add(e.getPartialXRDS());
continue;
}