> + */
> +public class ParseServerConsole implements Function<HttpResponse, Console> {
> +
> +    private final ParseJson<Map<String, Map<String, String>>> parser;
> +
> +    @Inject
> +    public ParseServerConsole(ParseJson<Map<String, Map<String, String>>> 
> parser) {
> +        this.parser = parser;
> +    }
> +
> +    @Override
> +    public Console apply(HttpResponse response) {
> +        checkNotNull(response, "response");
> +
> +        Map<String, Map<String, String>> responseObj =
> +            parser.apply(response);

fixed, I'm just used to 80 characters per line..

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/339/files#r11378276

Reply via email to