> @@ -207,12 +179,4 @@ private void checkAddress(Address address) {
>        if (!ImmutableSet.of("SG", "NL").contains(address.getCountry()))
>           assert address.getState() != null : address;
>     }
> -
> -   private void checkCategories(Set<ProductItemCategory> categories) {
> -      for (ProductItemCategory category : categories) {
> -         assert category.getId() > 0 : category;
> -         assert category.getName() != null : category;
> -         assert category.getCategoryCode() != null : category;
> -      }
> -   }

Please use TestNG [asserts](http://testng.org/javadoc/org/testng/Assert.html) 
here also...or is there any significant reason not to?

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

Reply via email to