> + }
> + }
> +
> + private final URI url;
> + private final Type type;
> +
> + @ConstructorProperties({
> + "url", "type"
> + })
> + protected Console(URI url, Type type) {
> + this.url = checkNotNull(url, "url");
> + this.type = checkNotNull(type, "type");
> + }
> +
> + /**
> + * Return an http url which will give access to the server console.
I think if you already have the `@return` bit, we don't need an additional
statement. If we want to keep it, use "returns" (2nd person) instead of
"return"?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/339/files#r11597702