Fix compilation issue.
This commit is contained in:
parent
5c7458f16d
commit
f87597fe9c
1 changed files with 1 additions and 2 deletions
|
|
@ -15,7 +15,6 @@ import java.util.UUID;
|
||||||
import okhttp3.Headers;
|
import okhttp3.Headers;
|
||||||
import okhttp3.MediaType;
|
import okhttp3.MediaType;
|
||||||
import okhttp3.RequestBody;
|
import okhttp3.RequestBody;
|
||||||
import okhttp3.internal.Util;
|
|
||||||
import okio.Buffer;
|
import okio.Buffer;
|
||||||
import okio.BufferedSink;
|
import okio.BufferedSink;
|
||||||
import okio.ByteString;
|
import okio.ByteString;
|
||||||
|
|
@ -56,7 +55,7 @@ public class BugReporterMultipartBody extends RequestBody {
|
||||||
private BugReporterMultipartBody(ByteString boundary, List<Part> parts) {
|
private BugReporterMultipartBody(ByteString boundary, List<Part> parts) {
|
||||||
mBoundary = boundary;
|
mBoundary = boundary;
|
||||||
mContentType = MediaType.parse(FORM + "; boundary=" + boundary.utf8());
|
mContentType = MediaType.parse(FORM + "; boundary=" + boundary.utf8());
|
||||||
mParts = Util.toImmutableList(parts);
|
mParts = parts;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue