342343344345346347348349350351352
{ int i = 0; for (Object obj : res.getInDoubt()) { org.apache.qpid.transport.Xid xid = (org.apache.qpid.transport.Xid) obj; result[i] = new XidImpl(xid.getBranchId(), (int) xid.getFormat(), xid.getGlobalId()); i++; } } return result; }
313314315316317318319320321322323