> @@ -91,9 +92,10 @@ public T apply(HttpResponse from) {
> private T convertStreamToStringAndParse(HttpResponse response) {
> String from = null;
> try {
> - from = new String(closeClientButKeepContentStream(response));
> + byte[] array = closeClientButKeepContentStream(response);Renamed to `fromBytes` to mirror existing code. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/509/files#r17204307
