> @@ -227,6 +227,26 @@ public void testImmutableSet() {
> assertEquals(resources, ImmutableSet.of(new Resource("i-foo", "foo"),
> new Resource("i-bar", "bar")));
> }
>
> + private Gson immutableMap = new
> GsonBuilder().registerTypeAdapterFactory(new
> ImmutableMapTypeAdapterFactory()).create();
> + private Type immutableMapType = new TypeToken<ImmutableMap<String,
> String>>() {
> + private static final long serialVersionUID = 1L;
[minor] Or remove these and add
`@SuppressWarning("someNameOrOtherIveForgotten")`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/455/files#r15531236