Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8cffcff5 authored by Steve Kondik's avatar Steve Kondik
Browse files

Fix backwards comment

Change-Id: Ia133cb368a42392feccd460df63559a52839ed0a
parent 4932436c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@ public class NFCProfileUtils {
        }
    }

    /* Convert a UUID to a 16-byte array */
    /* Convert a 16-byte array to a UUID */
    static UUID toUUID(byte[] byteArray) {

        long msb = 0;
@@ -100,7 +100,7 @@ public class NFCProfileUtils {
        return result;
    }

    /* Convert a 16-byte array to a UUID */
    /* Convert a UUID to a 16-byte array */
    static byte[] asByteArray(UUID uuid) {
        long msb = uuid.getMostSignificantBits();
        long lsb = uuid.getLeastSignificantBits();