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

Commit d87da8f2 authored by Robert Wiebe's avatar Robert Wiebe
Browse files

Revert okhttp dependency and add a comment to reflect the reason its not being updated

parent 578e6ab8
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -64,7 +64,10 @@ dependencies {
    implementation 'commons-io:commons-io:2.6'

    implementation 'com.squareup.retrofit2:retrofit:2.5.0'
    implementation 'com.squareup.okhttp3:okhttp:4.0.1'

    // Use of this old dependency is a decision of the project team to continue with pre Android v5 support.
    // Please do not update this dependency
    implementation 'com.squareup.okhttp3:okhttp:3.12.0'

    // Required for local unit tests (JUnit 4 framework)
    testImplementation 'junit:junit:4.12'
+0 −16
Original line number Diff line number Diff line
package com.nextcloud.android.sso.helper;

import org.jetbrains.annotations.NotNull;

import java.io.IOException;
import java.io.InputStream;
import java.nio.ByteBuffer;
@@ -277,18 +275,4 @@ public class BufferedSourceSSO implements BufferedSource {
    public int read(ByteBuffer dst) throws IOException {
        throw new UnsupportedOperationException("Not implemented");
    }

    @NotNull
    @Override
    public Buffer getBuffer()
    {
        throw new UnsupportedOperationException("Not implemented");
    }

    @NotNull
    @Override
    public BufferedSource peek()
    {
        throw new UnsupportedOperationException("Not implemented");
    }
}