Skip to content

Instantly share code, notes, and snippets.

@Lokutus
Last active June 6, 2018 11:49
Show Gist options
  • Save Lokutus/9748637 to your computer and use it in GitHub Desktop.
Save Lokutus/9748637 to your computer and use it in GitHub Desktop.
Spaces
public Product getProduct(String productId) {
Product product = null;
Asset asset = getAsset(Product.TYPE, productId);
if (asset != null)
product = new Product((ProductService) service, asset);
return product;
}
public Product getProduct(String productId) {
Product product = null;
Asset asset = getAsset(Product.TYPE, productId);
if (asset != null)
product = new Product((ProductService) service, asset);
return product;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment