> @@ -179,7 +176,8 @@ public Integer apply(String description) {
> public String apply(ProductItem productItem) {
> checkNotNull(productItem, "productItem");
> ProductItemPrice price = ProductItems.price().apply(productItem);
> - return "" + price.getId();
> + assert price != null;Use `checkNotNull` as a couple of lines before? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/77/files#r6901268
