NFCProfileUtils: Fix shifting operation

* Fixes
  Shift operation '>>>' by out-of-bounds value {-64..-8}: divisible by 8
* Tested by calling asByteArray() and then toUUID() on that, logging both
  -> Result is equal

Change-Id: I5f531f2e12a0cec752c98a9e548f271867f46978
diff --git a/src/org/lineageos/lineageparts/profiles/NFCProfileUtils.java b/src/org/lineageos/lineageparts/profiles/NFCProfileUtils.java
index 2c1ca0e..8eadf90 100644
--- a/src/org/lineageos/lineageparts/profiles/NFCProfileUtils.java
+++ b/src/org/lineageos/lineageparts/profiles/NFCProfileUtils.java
@@ -111,9 +111,7 @@
 
         for (int i = 0; i < 8; i++) {
             buffer[i] = (byte) (msb >>> 8 * (7 - i));
-        }
-        for (int i = 8; i < 16; i++) {
-            buffer[i] = (byte) (lsb >>> 8 * (7 - i));
+            buffer[i + 8] = (byte) (lsb >>> 8 * (7 - i));
         }
 
         return buffer;