}
if (remoteResults != null)
{
for (Map.Entry<ReadCommand, IAsyncResult> entry : remoteResults.entrySet())
{
IAsyncResult iar = entry.getValue();
byte[] body;
body = iar.get(DatabaseDescriptor.getRpcTimeout(), TimeUnit.MILLISECONDS);
ByteArrayInputStream bufIn = new ByteArrayInputStream(body);
ReadResponse response = ReadResponse.serializer().deserialize(new DataInputStream(bufIn));
assert response.row() != null;
rows.add(response.row());
StorageService.instance.doConsistencyCheck(response.row(), entry.getKey(), iar.getFrom());
}
}
return rows;
}