126127128129130131132133134135
} } private static Cursor fromByteArray(byte[] bytes) { Cursor result = new Cursor(); if (!result.compiledCursor.merge(new ProtocolSource(bytes))) { throw new IllegalArgumentException("Unable to decode provided cursor."); } return result; }
119120121122123124125126127128