sdk/core/azure-core-http-okhttp/src/main/java/com/azure/android/core/http/okhttp/OkHttpAsyncHttpClient.java [216:230]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        } else if (bytes.length >= 4
            && bytes[0] == (byte) 0x00
            && bytes[1] == (byte) 0x00
            && bytes[2] == (byte) 0xFE
            && bytes[3] == (byte) 0xFF) {
            return new String(bytes, 4, bytes.length - 4, Charset.forName("UTF-32BE"));
        } else if (bytes.length >= 4
            && bytes[0] == (byte) 0xFF
            && bytes[1] == (byte) 0xFE
            && bytes[2] == (byte) 0x00
            && bytes[3] == (byte) 0x00) {
            return new String(bytes, 4, bytes.length - 4, Charset.forName("UTF-32LE"));
        } else if (bytes.length >= 2
            && bytes[0] == (byte) 0xFE
            && bytes[1] == (byte) 0xFF) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



sdk/core/azure-core-http/src/main/java/com/azure/android/core/http/implementation/BufferedHttpResponse.java [132:146]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        } else if (bytes.length >= 4
            && bytes[0] == (byte) 0x00
            && bytes[1] == (byte) 0x00
            && bytes[2] == (byte) 0xFE
            && bytes[3] == (byte) 0xFF) {
            return new String(bytes, 4, bytes.length - 4, Charset.forName("UTF-32BE"));
        } else if (bytes.length >= 4
            && bytes[0] == (byte) 0xFF
            && bytes[1] == (byte) 0xFE
            && bytes[2] == (byte) 0x00
            && bytes[3] == (byte) 0x00) {
            return new String(bytes, 4, bytes.length - 4, Charset.forName("UTF-32LE"));
        } else if (bytes.length >= 2
            && bytes[0] == (byte) 0xFE
            && bytes[1] == (byte) 0xFF) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



