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

Commit b1cecc68 authored by David Luhmer's avatar David Luhmer
Browse files

update retrofit and okhttp

parent 835b6292
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -50,8 +50,8 @@ dependencies {

    implementation 'commons-io:commons-io:2.6'

    implementation 'com.squareup.retrofit2:retrofit:2.3.0'
    implementation 'com.squareup.okhttp3:okhttp:3.8.0'
    implementation 'com.squareup.retrofit2:retrofit:2.5.0'
    implementation 'com.squareup.okhttp3:okhttp:3.12.0'

    // Required for local unit tests (JUnit 4 framework)
    testImplementation 'junit:junit:4.12'
+11 −0
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@ import android.support.annotation.Nullable;

import java.io.IOException;
import java.io.InputStream;
import java.nio.ByteBuffer;
import java.nio.charset.Charset;

import okio.Buffer;
@@ -261,8 +262,18 @@ public class BufferedSourceSSO implements BufferedSource {
        throw new UnsupportedOperationException("Not implemented");
    }

    @Override
    public boolean isOpen() {
        throw new UnsupportedOperationException("Not implemented");
    }

    @Override
    public void close() throws IOException {
        throw new UnsupportedOperationException("Not implemented");
    }

    @Override
    public int read(ByteBuffer dst) throws IOException {
        throw new UnsupportedOperationException("Not implemented");
    }
}