File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Parse/src/main/java/com/parse Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 17
17
import java .io .UnsupportedEncodingException ;
18
18
19
19
/** package */ class ParseByteArrayHttpBody extends ParseHttpBody {
20
- protected final byte [] content ;
21
- protected final InputStream contentInputStream ;
20
+ /* package */ final byte [] content ;
21
+ /* package */ final InputStream contentInputStream ;
22
22
23
23
public ParseByteArrayHttpBody (String content , String contentType )
24
24
throws UnsupportedEncodingException {
Original file line number Diff line number Diff line change 18
18
*/
19
19
public abstract class ParseHttpBody {
20
20
21
- protected final String contentType ;
22
- protected final long contentLength ;
21
+ private final String contentType ;
22
+ private final long contentLength ;
23
23
24
24
/**
25
25
* Returns the content of this body.
You can’t perform that action at this time.
0 commit comments