Skip to content
This repository has been archived by the owner on Jun 3, 2021. It is now read-only.

Commit

Permalink
[Android] public method readStreamToString
Browse files Browse the repository at this point in the history
  • Loading branch information
lucky-chen committed Sep 26, 2019
1 parent 6845123 commit 55c1da4
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -85,7 +85,7 @@ public static String loadAsset(String path, Context context) {
return "";
}

private static String readStreamToString(InputStream inputStream) {
public static String readStreamToString(InputStream inputStream) {
BufferedReader bufferedReader = null;
try {
StringBuilder builder = new StringBuilder(inputStream.available() + 10);
Expand Down

0 comments on commit 55c1da4

Please sign in to comment.