Guest User

Untitled

a guest
Nov 29th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1. if(selectedStrings != null) {
  2.  
  3.     for (String string : selectedStrings) {
  4.  
  5.         Product selectedProduct = realm.where(Product.class).equalTo("product", string).findFirst();
  6.         if (selectedProduct != null) {
  7.             penetration.getProducts().add(selectedProduct);
  8.         }
  9.  
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment