Loading src/java/com/android/internal/telephony/IccSmsInterfaceManager.java +12 −12 Original line number Diff line number Diff line Loading @@ -179,7 +179,7 @@ public class IccSmsInterfaceManager { for (int i = 0; i < count; i++) { byte[] ba = messages.get(i); if (ba[0] == STATUS_ON_ICC_UNREAD) { if ((ba[0] & 0x07) == STATUS_ON_ICC_UNREAD) { int n = ba.length; byte[] nba = new byte[n - 1]; System.arraycopy(ba, 1, nba, 0, n - 1); Loading Loading @@ -785,7 +785,7 @@ public class IccSmsInterfaceManager { } // Status bits for this record. See TS 51.011 10.5.3 data[0] = (byte)(status & 7); data[0] = (byte) (status & 0x07); System.arraycopy(pdu, 0, data, 1, pdu.length); Loading Loading
src/java/com/android/internal/telephony/IccSmsInterfaceManager.java +12 −12 Original line number Diff line number Diff line Loading @@ -179,7 +179,7 @@ public class IccSmsInterfaceManager { for (int i = 0; i < count; i++) { byte[] ba = messages.get(i); if (ba[0] == STATUS_ON_ICC_UNREAD) { if ((ba[0] & 0x07) == STATUS_ON_ICC_UNREAD) { int n = ba.length; byte[] nba = new byte[n - 1]; System.arraycopy(ba, 1, nba, 0, n - 1); Loading Loading @@ -785,7 +785,7 @@ public class IccSmsInterfaceManager { } // Status bits for this record. See TS 51.011 10.5.3 data[0] = (byte)(status & 7); data[0] = (byte) (status & 0x07); System.arraycopy(pdu, 0, data, 1, pdu.length); Loading