playerInfo.setKills((buf[off] & 255) | ((buf[off + 1] & 255) << 8) |
((buf[off + 2] & 255) << 16) | ((buf[off + 3] & 255) << 24));
sorted.add(playerInfo);
off += 8;
}
Collections.sort(sorted, new KillsComparator());
return sorted;
} catch (UnsupportedEncodingException ex) {
throw new IllegalStateException(ex);
}