> @@ -195,6 +195,24 @@ public boolean apply(Invokable<?, ?> input) {
>              }
>           });
>  
> +   private static final LoadingCache<Invokable<?, ?>, 
> ImmutableList<Parameter>> invokableParamsCache =
> +       CacheBuilder.newBuilder().maximumSize(100).build(new 
> CacheLoader<Invokable<?, ?>, ImmutableList<Parameter>>() {
> +               @Override
> +               public ImmutableList<Parameter> load(Invokable<?, ?> 
> invokable) {
> +                   return invokable.getParameters();
> +               }
> +           });
> +
> +   /**
> +    * Returns the {@link Parameter}s associated with the given {@link 
> Invokable}. This function is back by a cache.

Fixed the typo. I left the ```@return``` comment out for consistency as it 
seems like none of the other functions in this class have them. LMK if you 
prefer it as I would be happy to move things around.

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

Reply via email to