miha-x64
11/22/2016, 2:02 PMif (uuid != null)
return uuid;
DataInputStream stream = null;
try {
stream = new DataInputStream(new FileInputStream(idFile));
uuid = new UUID(stream.readLong(), stream.readLong());
} catch (IOException e) {
log(e);
} finally {
if (stream != null) {
try { stream.close(); }
catch (IOException ignored) { }
}
}
if (uuid == null) { // condition ‘uuid == null’ is always ‘false’ O_o