Code analysis mistake? ``` if (uuid != nul...
# random
m
Code analysis mistake?
Copy code
if (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