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

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

Use latest version of squareup.okhttp3

parent 1d730057
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
import com.github.spotbugs.SpotBugsTask

buildscript {
    ext {
        kotlin_version = '1.3.41'
+16 −1
Original line number Diff line number Diff line
package com.nextcloud.android.sso.helper;

import androidx.annotation.Nullable;
import org.jetbrains.annotations.NotNull;

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

import androidx.annotation.Nullable;
import okio.Buffer;
import okio.BufferedSource;
import okio.ByteString;
@@ -276,4 +277,18 @@ 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");
    }
}