(InputStream in)
| 166 | } |
| 167 | |
| 168 | private String streamToString(InputStream in) throws IOException { |
| 169 | ByteArrayOutputStream result = new ByteArrayOutputStream(); |
| 170 | transferStream(in, result); |
| 171 | return result.toString(StandardCharsets.UTF_8.name()); |
| 172 | } |
| 173 | |
| 174 | private void loadNativeLibs() throws JSONException { |
| 175 | String pythonVer = buildJson.getString("python_version"); |
no test coverage detected